My python code:
#!/usr/bin/python
from markdown import markdown
fish='salmon'
print fish
s = """
| Type | Value |
| ------------- | -------------|
| Fish | {{fish}} |
"""
html = markdown(s, extensions=['tables'])
print(html)
However fish in the table is not replaced with salmon. I tried quotes, single curlies, etc.
Some discussions seem to imply I need to install some more extensions, which I tried randomly.
I guess I am lacking a clean way to resolve this with steps.