# HTML : Input: ([^<]*) Output: \1 # rST : Input: `([^<`>_]*) <([^`_>]*)>`_ Output: `\2 <\1>`_ # Markdown : Input: \[([^\]]*)\]\(([^\)]*)\) Output: [\2](\1) --- # HTML to rST Find what: ([^<]*) Replace with: `\2 <\1>`_ # HTML to Markdown Find what: ([^<]*) Replace with: [\2](\1) # rST to HTML Find what: `([^<`>_]*) <([^`_>]*)>`_ Replace with: \1 # rST to Markdown Find what: `([^<`>_]*) <([^`_>]*)>`_ Replace with: [\2](\1) # Markdown to HTML Find what: \[([^\]]*)\]\(([^\)]*)\) Replace with: \1 # Markdown to rST Find what: \[([^\]]*)\]\(([^\)]*)\) Replace with: `\2 <\1>`_