Pandoc 2.4 [RST](http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#hyperlink-references>) distinguishes between one underscore and two underscore links. Pandoc does not. This works: ``` echo "`g <www.google.com>`_. Go to `g`_" > t.txt rst2html.py t.txt ``` But Pandoc reports `[WARNING] Reference not found for 'g' at line 1 column 35`. ``` pandoc -f rst -t html t.txt ```