Skip to content

Commit 7887a54

Browse files
committed
Adapt test to new Pandoc 3.0 behaviour regarding underline
1 parent 2b85389 commit 7887a54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/panpipe/pandoc/conversion_test.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ defmodule Panpipe.Pandoc.ConversionTest do
198198

199199
test "AST.Underline" do
200200
underline = %Panpipe.AST.Underline{children: %Panpipe.AST.Str{string: "Example"}}
201-
assert Panpipe.Pandoc.Conversion.convert(underline, to: :markdown) == "[Example]{.ul}"
201+
assert Panpipe.Pandoc.Conversion.convert(underline, to: :markdown) == "[Example]{.underline}"
202202
assert Panpipe.Pandoc.Conversion.convert(underline, to: :textile) == "+Example+"
203203
assert Panpipe.Pandoc.Conversion.convert(underline, to: :plain) == "Example"
204204
end

0 commit comments

Comments
 (0)