diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2025-10-02 19:52:38 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2025-10-02 19:52:38 +0200 |
| commit | 94dceb4f7c1740de9215b36ec183f93ca4337ee7 (patch) | |
| tree | 5ad184efb0b74dd3aa4da7585f88a3e3f6cb4ecc /markdown/ast_modifier_test.go | |
| parent | 8b249c9ce8bd1c351daf80c6c9b095fb1bccafe2 (diff) | |
style(markdown): fix typo in package name
Diffstat (limited to 'markdown/ast_modifier_test.go')
| -rw-r--r-- | markdown/ast_modifier_test.go | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/markdown/ast_modifier_test.go b/markdown/ast_modifier_test.go new file mode 100644 index 0000000..3cdb955 --- /dev/null +++ b/markdown/ast_modifier_test.go @@ -0,0 +1,22 @@ +package markdown + +import "testing" + +func TestModifier(t *testing.T) { + content := ` +**bo*n*soir**, ça ***va* bien** ? +` + lxs := lex(content) + tree, err := ast(lxs) + if err != nil { + t.Fatal(err) + } + c, err := tree.Eval() + if err != nil { + t.Fatal(err) + } + if c != "<p><b>bo<em>n</em>soir</b>, ça <b><em>va</em> bien</b> ?</p>" { + t.Errorf("failed, got %s", c) + t.Logf("lxs: %s\ntree: %s", lxs, tree) + } +} |
