"Fossies" - the Fresh Open Source Software Archive 
Member "pandoc-2.18/test/command/3401.md" (4 Apr 2022, 322 Bytes) of package /linux/www/pandoc-2.18.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format (assuming markdown format).
Alternatively you can here
view or
download the uninterpreted source code file.
A member file download can also be achieved by clicking within a package contents listing on the according byte size field.
See #3401 and http://orgmode.org/manual/Macro-replacement.html
% pandoc -f org -t native
#+MACRO: HELLO /Hello, $1/
{{{HELLO(World)}}}
^D
[ Para [ Emph [ Str "Hello," , Space , Str "World" ] ] ]
Inverted argument order
% pandoc -f org -t native
#+MACRO: A $2,$1
{{{A(1,2)}}}
^D
[ Para [ Str "2,1" ] ]