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

learn more… | top users | synonyms

0
votes
0answers
47 views

Wanting to execute a python script on selected text in Sublime Text 2

Here's the story, I came across this post of Dr Drang's detailing his scripts for prettifying his MultiMarkdown tables with a particular python script. I'd like to take said script and execute it on ...
1
vote
3answers
125 views

Good MultiMarkdown editor for Linux?

I am looking for a GUI text editor for (Ubuntu) Linux that supports: Easy preview of MultiMarkdown output. MultiMarkdown syntax highlighting The editor should be: free and open source preferably ...
0
votes
2answers
49 views

Creating a cover page with MultiMarkdown

I'm playing around with Markdown and Marked for writing documentation for university projects, but need to be able to print these documents with a cover page. I'm wondering if there's any options out ...
1
vote
1answer
93 views

sublime text 2 build system for multimarkdown under windows 7

To process a .md file in multimarkdown, I've written a build system file: { "shell":true, "working_dir" : "${file_path}", "cmd": ["C:\\Program Files\\MultiMarkdown\\multimarkdown.exe", "-b", ...
1
vote
1answer
27 views

pandoc mmd_title_block appears not to load

I am new to pandoc and an attempting to use it to convert some simple mmd files to docx. These mmd files contain a mmd style title block in the following form: Author: Author_name Title: Title_name ...
0
votes
4answers
75 views

Replacing double backslash and brackets in Python

I am trying to write a script that could convert things like \\[ or \\] to $$ in order to convert a MultiMarkdown document to Pandoc markdown document that could display equations in HTML. I am using ...
1
vote
1answer
150 views

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: ...
0
votes
1answer
126 views

Sublime Text 2--Doubled Autopaired Characters

I'm a newish Sublime Text 2 user, using it largely for Markdown/MultiMarkdown at this point. In my writing workflow, I use _underscore_ pairing for all italics, and **double asterisk** pairing for all ...
4
votes
2answers
117 views

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 ...
1
vote
1answer
78 views

how to create a sql comment in multimarkdown?

It appears that multimarkdown has a feature which converts two consecutive hyphens -- into an emdash —. For example, in the Byword editor, when you type those two hyphens it automatically converts to ...
1
vote
1answer
225 views

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. ...
0
votes
0answers
26 views

Keep Multimarkdown from formatting the whole delimited csv field

I have a csv file (converted to txt) in which the fields are enclosed with " marks, so that when I use the following regex to find them: "(?>(?:[^"]+|"")*)" each fields stays separate, but when ...
1
vote
1answer
370 views

Is there any Markdown syntax parser for JavaScript with table?

I am looking for a Markdown syntax JavaScript parser with the table feature. It seems that I cant find one so I am having the hassle of implementing this feature into existing code, but I am not being ...
0
votes
0answers
702 views

How to generate table of contents in Multimarkdown?

I wonder how to generate a table of contents in Multimarkdown. I've tried to use the XSLT utility mmd-xslt to do it: ~/Library/Application Support/MultiMarkdown/bin $ ./mmd-xslt /Users/XXX/test.mdwn ...
0
votes
1answer
122 views

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 ...
1
vote
1answer
360 views

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. ...
1
vote
0answers
429 views

Converting multi-markdown to HTML & back in python

Is there a python library for converting multimarkdown to HTML (python-markdown seem to have its own extensions). Further is there a library for converting a HTML into MMD? Thank you, Joseph
2
votes
1answer
104 views

Best markup format for future-proofing large text chunks?

I have a number of records (=< 100) that contain sizeable chunks of text that require marking up (semantically: lists, headings, tables, links, quotations, etc...) before storing in a re-usable ...
1
vote
0answers
478 views

MultiMarkdown - A valid alternative to LaTeX? [closed]

I've just stumbled over MultiMarkdown and was quite impressed of its features and ease of use. What I want to know is if MultiMarkdown could be seen as an alternative to LaTeX. Has anyone used ...
17
votes
3answers
8k views

How do you create & 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 am unable to find a single example of how to actually do it. So, what it the syntax for ...