aboutsummaryrefslogtreecommitdiff
path: root/markdown/ast_modifier_test.go
blob: acb9f4078667188399e72e5fa9c5e1d4003e2969 (plain)
1
2
3
4
5
6
7
8
9
package markdown

import "testing"

func TestModifier(t *testing.T) {
	t.Run("modifiers", func(t *testing.T) {
		t.Run("combo", test(`**bo*n*soir**, ça ***va* bien** ?`, `<p><b>bo<em>n</em>soir</b>, ça <b><em>va</em> bien</b> ?</p>`))
	})
}