Bookmarked Extended Syntax | Markdown Guide (markdownguide.org)

The basic syntax outlined in the original Markdown design document added many of the elements needed on a day-to-day basis, but it wasn’t enough for some people. That’s where extended syntax comes in.

Several individuals and organizations took it upon themselves to extend the basic syntax by adding additional elements like tables, code blocks, syntax highlighting, URL auto-linking, and footnotes. These elements can be enabled by using a lightweight markup language that builds upon the basic Markdown syntax, or by adding an extension to a compatible Markdown processor.

Source: Extended Syntax | Markdown Guide


I have been using Markdown for a while. However, with my use of Obsidian, I have been exploring the extended syntax. I recently explored the addition of footnotes.

To create a footnote reference, add a caret and an identifier inside brackets ([^1]). Identifiers can be numbers or words, but they can’t contain spaces or tabs. Identifiers only correlate the footnote reference with the footnote itself — in the output, footnotes are numbered sequentially.

Add the footnote using another caret and number inside brackets with a colon and text ([^1]: My footnote.). You don’t have to put footnotes at the end of the document. You can put them anywhere except inside other elements like lists, block quotes, and tables.

Source: Extended Syntax | Markdown Guide

The problem I found was bringing this content back into HTML and WordPress. My usual Markdown to HTML translators (Code Beautify or Markdown Dingus) did not include footnotes. However, after testing a number of websites, I found that Dillinger includes extended syntax.

Bookmarked Easy Markdown by Jan BoddezJan Boddez (jan.boddez.net)

A little while ago, I switched one of my blogs from WordPress to ClassicPress (a fork of WordPress 4.9, so before the block editor was introduced) and back. There’s two reasons ClassicPress didn’t cut it for me: Quite a few plugins—even those that have nothing to do with the block editor—req…

Jan Boddez provides a markdown alternative to depending on Jetpack.
Replied to Practice what you preach | Open Educational Thinkering (dougbelshaw.com)

I was surprised to see the Privacy Badger was reporting tracking by Facebook and Pinterest. I’m particularly hostile to Facebook services, and don’t use any of them (including WhatsApp and Instagram). Upon further investigation, it turns out that even if you have ‘share to X’ buttons turned off, Jetpack still allows social networks to phone home. So that’s gone, too.

Doug, I long wanted to ditch Jetpack, but rely on it mark Markdown. Wondering if you had that problem and if so how you resolved it?