mod common; assert_ok! { hello_world( "Hello, world!", "

Hello, world!

", ); paragraph_break( "Paragraph 1\n\nParagraph 2", "

Paragraph 1

Paragraph 2

", ); code_inline( "`some_code`", "

some_code

", ); variable( "@let(x=5) {$x $x}", "

5 5

", ); line_comment( "# Nothing\nSomething", "

Something

", ); multiline_comment( "\nSomething", "

Something

", ); escaped_comment( "\\# not a comment", "

# not a comment

", ); } assert_matches! { let_multiple( "@let(x=5, y=$x) $y", "5", ); }