Questions tagged [multimarkdown]

MultiMarkdown (MMD) is a superset of Markdown, a lightweight markup language.

MultiMarkdown, or MMD, is a tool to help turn minimally marked-up plain text into well formatted documents, including HTML, PDF (by way of LaTeX), OPML, or OpenDocument (specifically, Flat OpenDocument or ‘.fodt’, which can in turn be converted into RTF, Microsoft Word, or virtually any other word-processing format). MMD was created by Fletcher T. Penny. A MultiMarkdown document usually has an extension .mmd.

MMD is a superset of the Markdown syntax, originally created by John Gruber. It adds multiple syntax features (tables, footnotes, and citations, to name a few), in addition to the various output formats listed above (Markdown only creates HTML). Additionally, it builds in “smart” typography for various languages (proper left- and right-sided quotes, for example).

References

MultiMarkdown website

Wikipedia Article

52 questions
1113
votes
16 answers

How to link to part of the same document in Markdown?

I am writing a large Markdown document and would like to place a table of contents of sorts at the beginning that will provide links to various locations in the document. How can I do this? I tried using: [a link](# MyTitle) where MyTitle is a…
recipriversexclusion
  • 13,448
  • 6
  • 34
  • 45
808
votes
8 answers

How to link to a named anchor in Multimarkdown?

I have come across a number of mentions of MultiMarkdown's support for internal links / named anchors but I am unable to find a single example of how to actually do it. So, what is the syntax for denoting the named anchor, and what is the syntax…
masukomi
  • 10,313
  • 10
  • 40
  • 49
369
votes
13 answers

How to add footnotes to GitHub-flavoured Markdown?

I am just trying to add footnotes in my GitHub Gist, but it doesn't work: Some long sentence. [^footnote] [^footnote]: Test, [Link](https://google.com). I am following this guide and I don't think I'm doing anything wrong. Can someone point out my…
Enrico Susatyo
  • 19,372
  • 18
  • 95
  • 156
251
votes
12 answers

Create a table without a header in Markdown

Is it possible to create a table without a header in Markdown? The HTML would look like this:
Key 1 Value 1
Key 2 Value 2
adius
  • 13,685
  • 7
  • 45
  • 46
37
votes
4 answers

Add ID or Class to Markdown-element

Is it possible to add an id or class to a (multi)markdown element? For example a table, a paragraph or block of code? I would like to style a table with css but non of following work: [captionid][This is the caption, not the table id] | First…
Tieme
  • 62,602
  • 20
  • 102
  • 156
17
votes
3 answers

How to handle special characters in markdown?

I am just discovering Markdown and MultiMarkdown and I am loving it so far. However, special characters are not properly escaped when exporting to HTML and come out as garbage in the browser. Example: How does Markdown handle special…
clstaudt
  • 21,436
  • 45
  • 156
  • 239
10
votes
0 answers

Multimarkdown in GitHub's Atom editor - made a start, want to make more progress

To extend the basic Markdown support in Atom, I've converted the TextMate Multimarkdown bundle (unescaping one hash sign - see the process on this Atom discussion). The (converted) TextMate bundle files are now in my Atom config folder. Markdown…
Dave Everitt
  • 17,193
  • 6
  • 67
  • 97
8
votes
2 answers

Is it possible to perform "tabs" in Multimarkdown?

Is there a way to realize tabs in Multimarkdown syntax? My Goal is something like: Item:-----------tab------->Value An other item:---tab--->Value And one item more:--->Value I could realize that by a table, but this would be an overhead. I'd love…
Aufwind
  • 25,310
  • 38
  • 109
  • 154
7
votes
3 answers

How to add metadata in Github-Flavoured-Markdown?

I would like to add metadata information to my markdown files like author, tags, ... . Is it possible to add metadata to a github-flavoured-markdown file, like you can do with multimarkdown?
Peter
  • 769
  • 1
  • 9
  • 23
7
votes
2 answers

Parsing elements from a markdown file in python 3

How might I get a list of elements from a markdown file in python 3? I'm specifically interested in getting a list of all images and links (along with relevant information like alt-text and link text) out of a markdown file. this Is some prior art…
Andrew Spott
  • 3,457
  • 8
  • 33
  • 59
5
votes
2 answers

Vim maths syntax highlighting

I'm trying to improve the syntax highlighting of maths in markdown documents. Multimarkdown uses brackets \\[ .. \\] and \\( .. \\) to indicate display and inline math respectively. I want to highlight the contents of these with TeX. Here's what…
aaren
  • 5,325
  • 6
  • 29
  • 24
3
votes
2 answers

Retrieving variables (document metadata) from a MultiMarkdown document with PHP

How can I retrieve MultiMarkdown document metadata (as defined here) using php? I was rather surprised that I couldn't find a MultiMarkdown php parser, PHP Markdown Extra doesn't do MultiMarkdown. I'm afraid that the scripts that MultiMarkdown's…
pax
  • 482
  • 8
  • 26
3
votes
1 answer

Sublime Text 3 Automatic Selecting Build System for MultiMarkdown File

I want to create a build system for Sublime Text 3 that will automatically run on any file that ends in ".mmd". I understand from the unofficial documentation that the "selector" option provides this feature; however, I'm not able to get it to work…
Matt Spicer
  • 112
  • 8
3
votes
0 answers

pandoc markdown or multimarkdown

I am thinking of using an editor like sublime text to write markdown files. Then I could later convert those to HTML, PDF or LaTeX, which would be very convenient for me, as I aim to write fiction and nonfiction (using quotes, bibliographies…
3
votes
2 answers

Setting bgcolor in markdown

I want to set the page bgcolor through markdown. Is there any way besides explicitly including, say, in the .md file? In particular, this seems to be implemented incorrectly. E.g. the following minimal file: % Page…
MichaelChirico
  • 33,841
  • 14
  • 113
  • 198
1
2 3 4