. tests/functions.sh title "superscript" rc=0 MARKDOWN_FLAGS=0x0; export MARKDOWN_FLAGS try -frelax 'A^B -> AB (-frelax)' 'A^B' '

AB

' try -fstrict 'A^B != AB (-fstrict)' 'A^B' '

A^B

' try -fnosuperscript 'A^B != AB (-fnosuperscript)' 'A^B' '

A^B

' try -frelax 'A^B in link title' '[link](here "A^B")' '

link

' try 'A^(B+2)C^2' 'A^(B+2)C^2' '

AB+2C2

' try 'A^((B+2))C^2' 'A^((B+2))C^2' '

A(B+2)C2

' try 'A^B+C^D' 'A^B+C^D' '

AB+CD

' summary $0 exit $rc