chore: fix restore tag node

This commit is contained in:
Steven 2024-01-05 18:50:28 +08:00
parent d2a9aaa9d4
commit ee13927607

View file

@ -147,7 +147,7 @@ func (*Tag) Type() NodeType {
}
func (n *Tag) Restore() string {
return fmt.Sprintf("<%s>", n.Content)
return fmt.Sprintf("#%s", n.Content)
}
type Strikethrough struct {