-----Original Message-----
From: Markdown-Discuss [mailto:markdown-discuss-boun...@six.pairlist.net] On
Behalf Of John MacFarlane
Sent: Thursday, August 14, 2014 2:10 PM
To: Discussion related to Markdown.
Subject: Re: Moving Markdown towards a standard syntax

> Here's an attempt of my own, which I've been working on for some time:
http://jgm.github.io/stmd/

Btw, when I ran the following JavaScript on the page (replace all spaces
with middle dots), it made some of the examples much more clear (tested in
Google Chrome only):

```javascript
var codeblocks = $$("pre.markdown code");
var space = new RegExp(" ", "g");

for (var i=0; i<l; i++){
    codeblocks[i].innerHTML = codeblocks[i].innerHTML.replace(space,
'&middot;');
}
``` 

Just open the console and run that code on the page. Thought it  might help
others reading the examples.

Waylan Limberg

_______________________________________________
Markdown-Discuss mailing list
Markdown-Discuss@six.pairlist.net
http://six.pairlist.net/mailman/listinfo/markdown-discuss

Reply via email to