1# Test markdown template for the custom parser 2 3@* this is a comment *@ 4 5@set ($subtitle = 'Custom parser is needed') 6 7## $subtitle 8 9some $some @@ should print 'some value' 10 11@if ($some == 'value') 12 all seems fine 13@else 14 there is a problem 15@end 16 17@macro(block $foo) 18 block macro called with foo=$foo and bodyContent=$bodyContent 19@end 20 21@%block($some) 22here 23@end 24