refactor(blogo): simplify Blogo implementation using the new plugin, core and plugins package

This commit is contained in:
Guz
2025-01-23 14:54:35 -03:00
parent 3f190af37b
commit 516d6a308c
3 changed files with 181 additions and 191 deletions

View File

@@ -28,7 +28,7 @@ const plainTextName = "blogo-plaintext-renderer"
type painText struct{}
func NewPlainText() plugin.Plugin {
func NewPlainText() plugin.Renderer {
return &painText{}
}