active questions tagged markdown - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T10:34:01Z http://stackoverflow.com/feeds/tag/markdown http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1790176/how-do-i-make-djangos-markdown-filter-transform-a-carriage-return-to-br 1 How do I make django's markdown filter transform a carriage return to <br />? Hobhouse 2009-11-24T13:49:00Z 2009-11-26T10:41:16Z <p>How can I change the default behavior in the markdown filter so that it transforms a newline to a br tag?</p> http://stackoverflow.com/questions/373002/better-ruby-markdown-interpreter 2 Better ruby markdown interpreter? Jonathan Lonowski 2008-12-16T22:26:09Z 2009-11-23T15:15:30Z <p>I'm trying to find a markdown interpreter class/module that I can use in a rakefile.</p> <p>So far I've found <a href="http://maruku.rubyforge.org/" rel="nofollow">maruku</a>, but I'm a bit wary of beta releases.</p> <p>Has anyone had any issues with maruku? Or, do you know of a better alternative?</p> http://stackoverflow.com/questions/895135/javascript-libraries-for-markdown-textile-and-others-anchor-references 1 JavaScript libraries for Markdown, Textile and others; Anchor references karlthorwald 2009-05-21T21:00:55Z 2009-11-22T21:00:02Z <p>I need a javascript library to convert structured ascii text to html on the fly. I am especially interested in the following point:</p> <p>I would like do use anchored links inside pages, see <a href="http://www.w3.org/TR/REC-html40/struct/links.html#h-12.1.1" rel="nofollow">http://www.w3.org/TR/REC-html40/struct/links.html#h-12.1.1</a></p> <p>Which library for structured text would support this or if it is not supported could be easily extended (i could write an extension)? </p> <p>Can you make a suggestion for a good and simple syntax for structured ascii text for "in page links"?</p> <pre><code>&lt;a href="#jumpend"&gt;jump to the end&lt;/a&gt; ...some body text... &lt;a name="jumpend"&gt;this is the end&lt;/a&gt; </code></pre> <p>I like the way links are written in "markdown", so how could the name anchor in a to be written extension be expressed in a nice way?</p> <p>Which libraries do you know or can you recommend? Should be multi browser, good and easy to read and extend clean source code, actively maintained. </p> <p>I am presently having a look at the JavaScript Markdown library "Showdown": <a href="http://attacklab.net/showdown/" rel="nofollow">http://attacklab.net/showdown/</a></p> http://stackoverflow.com/questions/1664999/i-seek-parser-markdown-file-for-presentation 1 I seek parser markdown-file for presentation sanemat 2009-11-03T03:07:00Z 2009-11-19T08:13:03Z <p>hi, I search web-based markdown-file parser to presentation.</p> <p>I want to presentation from online markdown-file, realtime parse. Because I want to manege markdown-files on git repository like github.</p> <p>I try to parse on ruby script(gem) 'slideshow' or 'slidedown'. It is very useful but it need parsed before.</p> <p>I know javascript base presentation tools a little. so I want to know javascript presentaiton tool. OR markdown-file parser on web-service I want.</p> <p>thanks.</p> http://stackoverflow.com/questions/1371576/markitup-continous-preview-refresh-without-hitting-enter 2 MarkItUp! continous preview refresh without hitting enter psychotik 2009-09-03T05:38:24Z 2009-11-18T15:24:48Z <p>I'm using MarkItUp (<a href="http://markitup.jaysalvat.com/" rel="nofollow">http://markitup.jaysalvat.com/</a>) and can't really figure out how to get it to continuously update the preview pane as each character is typed (or even when a 'space' is encountered). By default it refreshes the preview pane only when the enter key is hit. </p> <p>Is there any way to customize this behavior? The documentation mentions a <code>previewAutoRefresh</code> key, but setting it results in the update-on-enter thing, not any faster.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1709801/django-templatetag-for-rendering-a-subset-of-html 0 Django templatetag for rendering a subset of html defrex 2009-11-10T17:40:38Z 2009-11-10T18:36:47Z <p>I have some html (in this case created via TinyMCE) that I would like to add to a page. However, for security reason, I don't want to just print everything the user has entered.</p> <p>Does anyone know of a templatetag (a filter, preferably) that will allow only a safe subset of html to be rendered?</p> <p>I realize that markdown and others do this. However, they also add additional markup syntax which could be confusing for my users, since they are using a rich text editor that doesn't know about markdown.</p> http://stackoverflow.com/questions/1705895/python-markdown-markdown-inside-html-blocks 0 Python Markdown: Markdown Inside HTML Blocks Wei 2009-11-10T05:59:25Z 2009-11-10T07:00:25Z <p>Is there an extra for Python Markdown that supports Markdown inside HTML block elements, e.g. div, p</p> <p>i.e. is there a way to convert this:</p> <pre><code>&lt;div id="content"&gt; [Google](http://www.google.com) &lt;/div&gt; </code></pre> <p>to</p> <pre><code>&lt;div id="content"&gt; &lt;a href="http://www.google.com&gt;Google&lt;/a&gt; &lt;/div&gt; </code></pre> <p>using Python Markdown or a Python Markdown extension? I'm looking for something similar to <a href="http://michelf.com/projects/php-markdown/extra/#markdown-attr" rel="nofollow">this feature in PHP Markdown Extra</a></p> http://stackoverflow.com/questions/933824/python-regex-search-and-replace 3 Python Regex Search And Replace Quinn 2009-06-01T07:15:04Z 2009-11-09T21:41:39Z <p>I'm not new to Python but a complete newbie with regular expressions (on my to do list)</p> <p>I am trying to use python re to convert a string such as</p> <pre><code>[Hollywood Holt](http://www.hollywoodholt.com) </code></pre> <p>to</p> <pre><code>&lt;a href="http://www.hollywoodholt.com"&gt;Hollywood Holt&lt;/a&gt; </code></pre> <p>and a string like</p> <pre><code>*Hello world* </code></pre> <p>to</p> <pre><code>&lt;strong&gt;Hello world&lt;/strong&gt; </code></pre> http://stackoverflow.com/questions/1690601/markdown-and-xss 0 Markdown and XSS psb 2009-11-06T21:30:43Z 2009-11-06T21:49:00Z <p>Ok, so I have been reading about markdown here on SO and elsewhere and the steps between user-input and the db are usually given as </p> <ol> <li>convert markdown to html</li> <li>sanitize html (w/whitelist)</li> <li>insert into database</li> </ol> <p>but to me it makes more sense to do the following:</p> <ol> <li>sanitize markdown (remove all tags - no exceptions)</li> <li>convert to html</li> <li>insert into database</li> </ol> <p>Am I missing something? This seems to me to be pretty nearly xss-proof</p> http://stackoverflow.com/questions/1675943/computing-article-abstracts 4 Computing article abstracts TokenMacGuy 2009-11-04T19:09:01Z 2009-11-04T20:48:01Z <p>I'm looking for a way to automatically produce an abstract, basically the first few sentances/paragraphs of a blog entry, to display in a list of articles (which are written in markdown). Currently, I'm doing something like this:</p> <pre><code>def abstract(article, paras=3): return '\n'.join(article.split('\n')[0:paras]) </code></pre> <p>to just grab the first few lines worth of text, but i'm not totally happy with the results. </p> <p>What I'm really looking for is to end up with about 1/3 of a screenful of formatted text to display in the list of entries, but using the algorithm above, the amount pulled ends up with wildly varying amounts, as little as a line or two, is frequently mixed with more ideal sized abstracts.</p> <p>Is there a library that's good at this kind of thing? if not, do you have any suggestions to improve the output?</p> http://stackoverflow.com/questions/1632717/request-for-comments-what-should-the-syntax-be-to-include-code-snippets-in-markd 0 Request for comments: What should the syntax be to include code snippets in Markdown? (from external files) Nate Murray 2009-10-27T18:17:57Z 2009-11-03T19:49:56Z <p>I've been using <a href="http://daringfireball.net/projects/markdown/syntax" rel="nofollow">Markdown</a> recently.</p> <p>One of my biggest problems with Markdown is that Markdown has no syntax for including files within a document (vs., say, the <a href="http://en.wikibooks.org/wiki/LaTeX/Packages/Listings" rel="nofollow"><code>listings</code></a> package for LaTeX).</p> <p>I'd like to extend Markdown to support including whole and partial files as code snippets. For instance, it could look like this:</p> <pre><code>![:include src/foo/bar.rb](10-20) </code></pre> <p>and that would put the contents of <code>bar.rb</code> lines 10-20 into my document as a <code>code</code> block. The rationale is that</p> <ul> <li>documentation can be updated as the code changes. (vs. copy and paste which always gets outdated)</li> <li>you can then unit test the exact code that is in the documentation </li> </ul> <p>My questions are:</p> <ol> <li>What should the syntax be?</li> <li>Has this already been done and I am missing it? </li> </ol> http://stackoverflow.com/questions/203859/how-do-i-get-python-markdown-to-additionally-urlify-links-when-formatting-plain 0 How do I get python-markdown to additionally "urlify" links when formatting plain text? superjoe30 2008-10-15T06:22:22Z 2009-11-03T11:18:37Z <p>Markdown is a great tool for formatting plain text into pretty html, but it doesn't turn plain-text links into URLs automatically. Like this one:</p> <p><a href="http://www.google.com/" rel="nofollow">http://www.google.com/</a></p> <p>How do I get markdown to add tags to URLs when I format a block of text?</p> http://stackoverflow.com/questions/134235/is-there-any-good-markdown-javascript-library-or-control 5 Is there any good Markdown Javascript library or control? webmat 2008-09-25T16:08:10Z 2009-10-22T17:48:47Z <p>I want to build a site where the user can enter text and format it in Markdown. The reason I'd like a Javascript solution is because I want to display a live preview, just like on StackOverflow.</p> <p>My site is not targeted at developers, however, so an editor control would be ideal.</p> <p>I gather that on StackOverflow, the <a href="http://wmd-editor.com/" rel="nofollow">WMD editor</a> is being used.</p> <p>A quick search on Google also turns up <a href="http://attacklab.net/showdown/" rel="nofollow">Showdown library</a>, which I think is actually being used by WMD.</p> <p>Are there any other options? Are WMD/Showdown great tools already? What have been your experiences with the different options?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1571965/custom-markdown-for-php-handling-new-lines 1 Custom Markdown for PHP handling new lines GDMFSOB 2009-10-15T12:06:40Z 2009-10-15T14:45:04Z <p>Hello World,</p> <p>I need custom Markdown library for PHP which converts new lines to <code>&lt;br/&gt;</code> without the need to put double space on the end of the line, kinda like here on SO. I've been looking on the web but without success. I know I could just amend standard library but my regex skills are none. </p> <p>Does anybody know about such library in existence or know how to change default behaviour easily?</p> <p>Many thanks</p> <p>EDIT: Dumb me, SO does not work this way, it appears to be standard Markdown behaviour. However such functionality is being used on github.com.</p> http://stackoverflow.com/questions/1384807/sanitize-markdown-in-rails 1 Sanitize Markdown in Rails? Horace Loeb 2009-09-06T03:33:19Z 2009-10-15T07:00:27Z <p>Users can edit "articles" in my application. Each article is mastered in the DB and sent to the client as Markdown -- I convert it to HTML client side with Javascript.</p> <p>I'm doing this so that when the user wants to edit the article he can edit and POST the Markdown right back to the server (since it's already on the page).</p> <p>My question is how to sanitize the Markdown I send to the client -- can I just use Rails' <code>sanitize</code> helper?</p> <p>Also, any thoughts on this approach in general? Another strategy I thought of was rendering and sanitizing the HTML on the server, and pulling the Markdown to the client only if the user wants to edit the article.</p> http://stackoverflow.com/questions/1557880/is-it-the-best-practice-to-store-content-in-the-database-as-html-when-content-is 0 Is it the best practice to store content in the database as html when content is written in markdown? rpflo 2009-10-13T01:55:26Z 2009-10-13T01:59:56Z <p>Or is just saving markdown and rendering it on requests usually okay?</p> <p>I'm writing a site that uses markdown for content. Stack overflow similarly uses markdown for comments and questions.</p> <p>I'm storing the content as markdown in the database and then rendering it to html when the user visits the site.</p> <p>I've got a feeling I ought to be storing the markdown and the html output in the database to cut down the load on the server. However, the performance doesn't seem like an issue now (famous last words.)</p> <p>It's a rails site using the rdiscount gem to convert the markdown.</p> http://stackoverflow.com/questions/1550539/how-can-i-intercept-and-modify-markdown-from-the-wmd-markdown-editor-before-it-po 1 How can I intercept and modify markdown from the wmd markdown editor before it posts? [closed] Mr. Flibble 2009-10-11T12:04:14Z 2009-10-11T12:38:57Z <p>I'm starting a Stack Exchange site and I want to be able to intercept the question text before and after the markdown script gets at it. </p> <p>I want to be be able to enter <code>[custom-tag]stuff to be altered[/custom-tag]</code> in the question window, and then have the <code>stuff to be altered</code> removed (as the standard markdown engine won't be able to interpret it) store it, and then replace the tags in the output with the <code>stuff to be altered</code> after it has been processed by my own (serverside) engine. </p> <p>I'm failing at the first step; I can't find the markdown javascript is. Is it somewhere hidden in /content/js/master.js?</p> http://stackoverflow.com/questions/1533314/whats-a-good-syntax-for-an-html-link-markdown-to-make-internal-links-easier 2 What's a good syntax for an HTML link markdown to make internal links easier? Timmy 2009-10-07T18:19:45Z 2009-10-08T23:38:22Z <p>I want to create a good syntax for making it easier to link to internal things, kind of like a Wiki, so maybe I'm thinking the user can use something like:</p> <pre><code>Bah bah bah reference: [[a]] </code></pre> <p>And it would convert it into HTML:</p> <pre><code>Bah bah bah reference: &lt;a href="..../id=a"&gt;title&lt;/a&gt; </code></pre> <p>but I'm worry about interjection and security issues. What's a good syntax to pick (maybe [[]] or something else) and what's a safe regex for it?</p> http://stackoverflow.com/questions/1540834/how-make-a-better-markdown-for-developer-blog 0 How make a better markdown for developer blog mamcx 2009-10-08T22:21:13Z 2009-10-08T22:52:05Z <p>I'm rebuilding my blog at <a href="http://www.elmalabarista.com/blog/" rel="nofollow">http://www.elmalabarista.com/blog/</a>. I have use in my previous version markdown and now I remember why I have almost zero code samples. Doing code samples in markdown is very fragile.</p> <p>I try to put some python there I can't make markdown mark it as code!. The main culprit? The syntax is markdown for code is out spaces. Despite the fact I use wmd as the editor (how that work here in SO is a mistery for me), it never be able to move rigth the text so never get as code. this is the problem:</p> <p>I put something simple:</p> <pre><code>:::python def hello(): pass </code></pre> <p>But the problem is that something I have:</p> <p>:::python def hello(): pass</p> <p>or</p> <p>:::python def hello(): pass</p> <p>(yes bot was formatted but you see? not work). Any mistake -using tabs, too much, too litle spaces) is punished heavily. And if the code is long, the chance of a problem increase too.</p> <p>So, exist any way to simply do:</p> <p>### My article</p> <ol> <li>My list entry one</li> <li>My list entry two</li> </ol> <p>:::python def x (a, b): return a * b</p> <p>and get converted rigth and never bother about this small thing again???</p> <p>By the way, I'm using pygments &amp; python markdown.</p> http://stackoverflow.com/questions/1514052/how-to-zip-a-wordprocessingml-folder-into-readable-docx 0 How to zip a WordprocessingML folder into readable docx Michael 2009-10-03T15:29:36Z 2009-10-06T00:34:33Z <p>I have been trying to write a simple Markdown -> docx parser/writer, but am completely stuck with the last part, which should be the easiest: i.e. compressing the folder into a .docx that Word, or any other .docx reader, will recognize. </p> <p>My parser-writer is irrelevant really: I have this problem if I simply unzip any old Word-produced *.docx and then try to recompress it with the usual compression utilities, giving it the file-ending docx. Is there some mysterious header I should be adding, or do I need a special OPC compression utility, or what? </p> <p>I don't so much want a tool that will do this, as to figure out what is supposed to be there. It seems to be independent of the WordprocessingML specification. </p> <p>Needless to say I don't know anything about compression. Everything I can find via Google has to do with fancy utilities you can use in business, but I'm making a little executable that would be GPLd or something, and should work on anything. </p> http://stackoverflow.com/questions/1517207/markdown-and-escaping-javascript-line-breaks 3 Markdown And Escaping Javascript Line Breaks Gordon Guthrie 2009-10-04T19:44:17Z 2009-10-05T07:11:14Z <p>I am writing a markdown compiler in Erlang for server-side use. Because it will need to work with clients I have decided to adopt the client side library (showdown.js) as the specification and then test my code for compatibility with that.</p> <p>In the first couple of iterations I built up 260-odd unit tests which checked that my programme produced output which was compatible with what <strong><em>I thought was valid markdown</em></strong> based on reading the <a href="http://daringfireball.net/projects/markdown/syntax" rel="nofollow">syntax notes</a>.</p> <p>But now I am trying to write a javascript programme to generate my unit tests.</p> <p>I have an input like:</p> <pre><code>"3 &gt; 4\na" </code></pre> <p>I want to run 'showdown' on it to get:</p> <pre><code>"&lt;p&gt;3 &amp;gt; 4\na&lt;/p&gt;" </code></pre> <p>and I want to stitch this up into an EUnit assertion:</p> <pre><code>"?_assert(conv(\"3 &gt; 4\na\") == \"&lt;p&gt;3 &amp;gt; 4\na&lt;/p&gt;\"),", </code></pre> <p>which is the valid Erlang syntax for the unit test. To make life easy, and to make the unit test generator portable I am doing it inside a web page so that by appending some lines to a javascript file and then view the page you get the new set of unit tests inside a <code>&lt;textarea /&gt;</code> which you then copy down into the module to run EUnit.</p> <p>The problem is that I can't get the line breaks to convert to <code>\n</code> in the string so I end up with:</p> <pre><code>"?_assert(conv(\"3 &gt; 4 a\") == \"&lt;p&gt;3 &amp;gt; 4 a&lt;/p&gt;\"),", </code></pre> <p>I've tried converting the linefeeds to their escaped versions using code like:</p> <pre><code>text.replace("\\", "\\\\"); text.replace("\n", "\\n"); </code></pre> <p>but no joy...</p> http://stackoverflow.com/questions/1435288/what-is-the-simplest-implementation-of-markdown-for-a-cocoa-application 3 What is the simplest implementation of Markdown for a Cocoa application? Ellie P. 2009-09-16T20:30:14Z 2009-10-04T00:18:20Z <p>I'm writing a Cocoa application in Objective-C, and I would like to be able to incorporate Markdown. The user will enter text in Markdown syntax, click an "export" button, and the program will output a file of XHTML.</p> <p>It seems like there are a lot of options, though. I could use one of the <a href="http://stackoverflow.com/questions/889434/markdown-implementations-for-c-c">C/C++ implementations</a>, I could <a href="http://mailsteward.com/nickstek/?p=5" rel="nofollow">run the Perl script as a resource to my Cocoa app</a>, I assume could use the Python implementation and the PyObjC bridge or the Perl implementation and the CamelBones or PerlObjC bridges. What would be the simplest and easiest solution? I'm not doing anything complicated like a real-time rendered preview that would require threading.</p> http://stackoverflow.com/questions/1481203/javascript-showdown-markdown-not-parsing-correctly 0 javascript showdown, markdown not parsing correctly Neil Hickman 2009-09-26T13:26:59Z 2009-09-27T21:06:45Z <p>I have a little confusing problem.</p> <p>I have two files, both that run showdown however it seems that only one file parses correctly.</p> <p>Here's the deal.</p> <p><a href="http://pastie.org/631525" rel="nofollow">File 1</a> . Is run through php and ajax</p> <p><a href="http://pastie.org/631526" rel="nofollow">File 2</a> . Is grabbed via an ajax request, the file the processes the ajax request contains this code.</p> <p>Here is the <a href="http://pastie.org/631527" rel="nofollow">ajax</a></p> <p>as you can see, the jquery that puts the details onto the screen are exactly the same apart from the variables and the json string instead of a direct string from the database.</p> <p>Now file one doesn't parse the markdown correctly, where file two does...</p> <p>here is a screenshot of file one and two</p> <p><strong>file one</strong> </p> <p><img src="http://i34.tinypic.com/x3cmpv.png" alt="file one not working" title="" /></p> <p><strong>file two</strong></p> <p><img src="http://i36.tinypic.com/2py14l5.png" alt="file two working" title="" /></p> <p>Any ideas what could be possibly causing this? Also any ideas on a fix?</p> http://stackoverflow.com/questions/1460845/django-markdown-issue-nonetype-object-has-no-attribute-strip 0 django & markdown issue: 'NoneType' object has no attribute 'strip' israkir 2009-09-22T15:37:49Z 2009-09-22T15:50:10Z <p>I have a problem about markdown and django integration. After I installed markdown and change my model class to:</p> <pre><code>class Page(models.Model): class Translation(multilingual.Translation): title = models.CharField(verbose_name="Title", max_length=30, help_text="Put a title (max. 30 chars) of your page -e.g. About, CEO, Contact etc...") content_markdown = models.TextField(verbose_name="Markdown Content", help_text="Use Markdown syntax here.") content = models.TextField(verbose_name="Page content as HTML", blank=True, null=True, help_text="You don't have to touch here.") slug = models.SlugField(verbose_name="Slug", help_text="Put here the name of your page without space -e.g. research-development") class Meta: verbose_name_plural = "Pages" ordering = ['id'] def __unicode__(self): return self.title def save(self): import markdown self.content = markdown.markdown(self.content_markdown) super(Page, self).save() def get_absolute_url(self): # return "/%s/%s" % (self.menu.slug, self.slug) return "/%s" % self.slug </code></pre> <p>I got these traceback:</p> <pre><code>Traceback: File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/base.py" in get_response 92. response = callback(request, *callback_args, **callback_kwargs) File "/usr/local/lib/python2.6/dist-packages/django/contrib/admin/options.py" in wrapper 226. return self.admin_site.admin_view(view)(*args, **kwargs) File "/usr/local/lib/python2.6/dist-packages/django/views/decorators/cache.py" in _wrapped_view_func 44. response = view_func(request, *args, **kwargs) File "/usr/local/lib/python2.6/dist-packages/django/contrib/admin/sites.py" in inner 186. return view(request, *args, **kwargs) File "/usr/local/lib/python2.6/dist-packages/django/db/transaction.py" in _commit_on_success 240. res = func(*args, **kw) File "/usr/local/lib/python2.6/dist-packages/django/contrib/admin/options.py" in add_view 734. self.save_model(request, new_object, form, change=False) File "/usr/local/lib/python2.6/dist-packages/django/contrib/admin/options.py" in save_model 557. obj.save() File "/media/DATA/Programming/pyworkspace/djangoprojects/youngjin/../youngjin/archive/models.py" in save 37. self.content = markdown.markdown(self.content_markdown) File "/usr/local/lib/python2.6/dist-packages/Markdown-2.0.1-py2.6.egg/markdown/__init__.py" in markdown 587. return md.convert(text) File "/usr/local/lib/python2.6/dist-packages/Markdown-2.0.1-py2.6.egg/markdown/__init__.py" in convert 370. if not source.strip(): Exception Type: AttributeError at /admin/archive/page/add/ Exception Value: 'NoneType' object has no attribute 'strip' </code></pre> <p>I cannot really figure out what is the problem. Any idea?</p> http://stackoverflow.com/questions/1365675/loading-markdownify-in-codeigniter 0 Loading Markdownify in CodeIgniter alimango 2009-09-02T03:16:20Z 2009-09-18T08:00:02Z <p>Hi, I downloaded Markdownify from <a href="http://milianw.de/projects/markdownify/" rel="nofollow">http://milianw.de/projects/markdownify/</a> and extracted it to my application/libraries/ directory.</p> <p>I did a:</p> <pre><code>$this-&gt;load-&gt;library('markdownify'); echo $this-&gt;markdownify-&gt;parseString('&lt;b&gt;Test&lt;/b&gt;'); </code></pre> <p>But the output is the same html markup. It didn’t work. How do I get it working?</p> http://stackoverflow.com/questions/889434/markdown-implementations-for-c-c 3 Markdown Implementations for C/C++ Kristopher Johnson 2009-05-20T18:18:01Z 2009-09-17T11:22:42Z <p>What is the best implementation of <a href="http://daringfireball.net/projects/markdown/" rel="nofollow">Markdown</a> for C or C++?</p> <p>I found these via Google, and would appreciate comments about which ones work well and which ones don't (and which ones I may have missed):</p> <ul> <li><a href="http://github.com/jgm/peg-markdown/tree/master" rel="nofollow">peg-markdown</a></li> <li><a href="http://www.pell.portland.or.us/~orc/Code/markdown/" rel="nofollow">Discount</a></li> <li><a href="http://cpp-markdown.sourceforge.net/" rel="nofollow">Cpp-Markdown</a></li> </ul> http://stackoverflow.com/questions/1307662/whats-the-easiest-way-to-convert-an-so-data-dump-from-html-back-to-markdown 4 What's the easiest way to convert an SO data dump from HTML back to Markdown? Norman Ramsey 2009-08-20T17:23:49Z 2009-09-15T16:37:43Z <p>I've just got my hands on a Stackoverflow <a href="http://blog.stackoverflow.com/category/cc-wiki-dump/" rel="nofollow">data dump</a>, and I'm disappointed to see that the Body field of the posts is in HTML rather than Markdown. I suspect there's Markdown in the original database because that's what I see if I try to edit an answer.</p> <p>I want to recover Markdown from a large set of answers. I will be processing hundreds of entries in batch mode, using either command-line tools or some kind of Lua or C library, so an interactive tool like the <a href="http://wmd-editor.com/" rel="nofollow">wmd Markdown editor</a> is not suitable. Can people say <strong>what tools are available to help me recover Markdown from a Stackoverflow data dump?</strong></p> <p><hr /></p> <p>(Related question, not a duplicate: <a href="http://stackoverflow.com/questions/235224/convert-html-back-to-markdown-for-editing-in-wmd">Convert HTML back to Markdown within wmd</a>.)</p> http://stackoverflow.com/questions/1427845/how-do-i-know-if-i-need-to-use-a-markdown-library 0 How do I know if I need to use a Markdown library? marc 2009-09-15T15:22:28Z 2009-09-15T15:33:02Z <p>I've been finding that a lot of Github projects use <a href="http://en.wikipedia.org/wiki/Markdown" rel="nofollow">Markdown</a>. I originally thought this library was only needed on sites like StackOverflow that include the ability for users to add comments or posts that might include source code snippets. But some apps seem to use Markdown even when this is not the case. </p> <blockquote> <p>Markdown is a lightweight markup language, originally created by John Gruber and Aaron Swartz to help maximum readability and "publishability" of both its input and output forms. The language takes many cues from existing conventions for marking up plain text in email. Markdown converts its marked-up text input to valid, well-formed XHTML and replaces left-pointing angle brackets ('&lt;') and ampersands with their corresponding character entity references.</p> </blockquote> <p>Currently I'm writing a web app that includes the ability for users to add comments. Is it possible that I should be using Markdown for this - even if the comments do not contain source code?</p> http://stackoverflow.com/questions/1319657/javascript-to-convert-markdown-textile-to-html-and-ideally-back-to-markdown-te 5 Javascript to convert Markdown/Textile to HTML (and, ideally, back to Markdown/Textile) Horace Loeb 2009-08-23T21:46:18Z 2009-08-24T00:19:45Z <p>There are several good Javascript <strong>editors</strong> for Markdown / Textile (e.g.: <a href="http://attacklab.net/showdown/" rel="nofollow">http://attacklab.net/showdown/</a>, the one I'm using right now), but all I need is a Javascript function that converts a string from Markdown / Textile -> HTML and back.</p> <p>What's the best way to do this? (Ideally it would be jQuery-friendly -- e.g., <code>$("#editor").markdown_to_html()</code>)</p> <p><strong>Edit:</strong> Another way to put it is that I'm looking for a Javascript implementation of Rails' <code>textilize()</code> and <code>markdown()</code> text helpers</p> http://stackoverflow.com/questions/1266650/should-i-sanitize-markdown 3 Should i sanitize markdown? admax 2009-08-12T14:45:30Z 2009-08-13T01:05:37Z <p>For my post entity i store both HTML and MARKDOWN in database (HTML is converted from MARKDOWN). HTML is for rendering on page and MARKDOWN for editing ability (with WMD). I sanitize HTML before storing to db. Question is: should i sanitize markdown too? or it is xss-safe if i only pass it to wmd-editor?</p>