. tests/functions.sh title "markdown extra-style footnotes" rc=0 MARKDOWN_FLAGS= FOOTIE='I haz a footnote[^1] [^1]: yes?' try -ffootnote 'footnotes (-ffootnote)' "$FOOTIE" \ '

I haz a footnote1


  1. yes?

' try -ffootnote -Cfoot 'footnotes (-ffootnote -Cfoot)' "$FOOTIE" \ '

I haz a footnote1


  1. yes?

' try -fnofootnote 'footnotes (-fnofootnote)' "$FOOTIE" \ '

I haz a footnote^1

' summary $0 exit $rc