Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MultiMarkdown Support Feature Request #105

Closed
macdrifter opened this issue Apr 30, 2012 · 6 comments
Closed

MultiMarkdown Support Feature Request #105

macdrifter opened this issue Apr 30, 2012 · 6 comments

Comments

@macdrifter
Copy link

Add support for MultiMarkdown preview instead of plain Markdown. MultiMarkdown supports common features like footnotes and tables, which Markdown does not.

@dtjm
Copy link
Owner

dtjm commented Apr 30, 2012

I've been looking into this but haven't been able to find a parser in JavaScript. If those are the particular features you need then I might be able to hack them into the current parser.

On Apr 30, 2012, at 5:02 AM, Macdrifterreply@reply.github.com wrote:

Add support for MultiMarkdown preview instead of plain Markdown. MultiMarkdown supports common features like footnotes and tables, which Markdown does not.


Reply to this email directly or view it on GitHub:
#105

@macdrifter
Copy link
Author

I didn't realize it was rendering with JS. That explains why it's so fast. It's a pretty low priority so it can wait for a proper solution. I wouldn't want it to hold up anything else.

@dtjm
Copy link
Owner

dtjm commented Apr 30, 2012

Yeah it's actually rendering as you type in a Web Worker thread in the background, so when you turn on preview it's just showing what's already rendered.

I'll keep it in the FEATURES milestone and come back to it later.

On Apr 30, 2012, at 1:09 PM, Macdrifterreply@reply.github.com wrote:

I didn't realize it was rendering with JS. That explains why it's so fast. It's a pretty low priority so it can wait for a proper solution. I wouldn't want it to hold up anything else.


Reply to this email directly or view it on GitHub:
#105 (comment)

@dtjm
Copy link
Owner

dtjm commented May 30, 2012

MultiMarkdown will be released in 3.6 which I'm prepping right now.

@dtjm dtjm closed this as completed May 30, 2012
@macdrifter
Copy link
Author

You rock! How'd you do it in JavaScript?

Gabe

On May 30, 2012, at 10:39 AM, dtjm wrote:

MultiMarkdown will be released in 3.6 which I'm prepping right now.


Reply to this email directly or view it on GitHub:
#105 (comment)

@dtjm
Copy link
Owner

dtjm commented May 31, 2012

Well, I tried translating Fletcher Penney's PEG grammar to peg.js but it wasn't going to happen. So instead I went the server side route. I built a Node.js module from his libraries and made a web service out of it.

It's a little less snappy but it should be completely accurate.

Hopefully I'll have it done by the weekend.

Sam

On May 30, 2012, at 5:29 PM, Macdrifterreply@reply.github.com wrote:

You rock! How'd you do it in JavaScript?

Gabe

On May 30, 2012, at 10:39 AM, dtjm wrote:

MultiMarkdown will be released in 3.6 which I'm prepping right now.


Reply to this email directly or view it on GitHub:
#105 (comment)


Reply to this email directly or view it on GitHub:
#105 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants