Re: Markdown vs. BBCode Community Center Meta DaniWeb by TrustyTony …know if it is possible to add thei markdown extra, so indentation can be avoided for code…painting games. from http://warpedvisions.org/projects/markdown-cheat-sheet/ ~~~ // Markdown extra adds un-indented code blocks too …the Python forum tread of desparate posters.** Generally markdown seems very human readable, like [ReST](http://docutils… Markdown vs. BBCode Community Center Meta DaniWeb by Dani Soooo Initial Impressions .... Markdown vs BBCode ... ? :) Re: Markdown vs. BBCode Community Center Meta DaniWeb by diafol … get formatted anyway. BBCode was simple but a little awkward. Markdown is frsutrating to begin with, but I suppose it will… Re: Markdown vs. BBCode Community Center Meta DaniWeb by mike_2000_17 I generally like the new editor and the markdown. It's not only simpler but also more feature-rich (… Re: Markdown vs. BBCode Community Center Meta DaniWeb by Dani Now that most of the bugs are squished ... Still waiting for those opinions ... At the end of the day, Markdown or BBCode? :) Markdown strict mode Community Center Meta DaniWeb by Dani Just a little notification that our markdown parser is now in strict mode. That means that, when … Re: Markdown discrepancy Community Center Meta DaniWeb by deceptikon Yes, there are many things the editor converts that the Markdown parser doesn't. Unfortunately, we use an editor with an especially obtuse and finicky parsing algorithm, so I've had trouble customizing it without making Dani nervous. ;) The posted result is what should happen, sadly. So keep an eye on the preview for now. Re: Python implementations of markdown parsers that can produce HTML Programming Software Development by Gribouillis … things in programming, but the task of converting markdown to html is not such a basic thing.… already exist: you can install the [markdown module](http://pythonhosted.org/Markdown/install.html), then use its conversion function…utf-8") text = input_file.read() html = markdown.markdown(text) You could perhaps look in the source code of… Re: FB Messenger supports Markdown Hardware and Software Cloud-based Apps by pty I guess the beauty of markdown is that they can introduce it …'t know or care about it. The only markdown directives that might get in the way are, …allow hyperlinks, headings or lists? Anything that pushes Markdown more mainstream is good though. I started a business… to introduce non-tech people to Markdown, so the more exposure the better. Change Markdown Syntax Page Community Center by diafol … the will to live after the 100th paragraph of why Markdown and who did what to whom. Urgh. Can't there… just be a table? `HTML tag | Markdown | Example` or something similar? Then just a simple, "No… HTML tags, BBCode or any other Markdown will be parsed". Sorry if I'm coming across… FB Messenger supports Markdown Hardware and Software Cloud-based Apps by Dani … was actually parsing my asterisks into bold! And it parses Markdown's syntax for italics too! I swear this is new… do: `*bold* or _italics_` ... Yes, it's not *exactly* Markdown b/c Markdown requires two asterisks for bold, or else it functions… Re: Python implementations of markdown parsers that can produce HTML Programming Software Development by Gribouillis In order to see the source code, install the markdown or markdown2 module first, then visit the folder named markdown or markdown2. You can type in python >>> import markdown >>> print(markdown) This should give you the path to the folder. All the python files in this folder are part of the module's source code. Converting markdown to HTML programatically Programming Software Development by myk45 Hello All, I want to convert a markdown file to its equivalent HTML programatically and Iam looking for … this properly. I would need a script that converts the markdown file into proper html.I'am aware of Doxygen which… Re: Python implementations of markdown parsers that can produce HTML Programming Software Development by snippsat … [markdown2](https://github.com/trentm/python-markdown2) module. import markdown2 markdown = """\ # Hello, how are you I'm fine… no part two! ###### So long!""" print(markdown2.markdown(markdown)) """Output--> <h1>Hello, how… Re: Change Markdown Syntax Page Community Center by pty I'm currently writing a Markdown powered CMS, which adheres to [Commonmark](http://commonmark.org). Their [help page](http://commonmark.org/help/) is quick, easy and to-the-point. Re: Change Markdown Syntax Page Community Center by diafol … table. Is it supposed to be a reference for using markdown with the editor or a deep and meaningful discussion? I… Re: Change Markdown Syntax Page Community Center by happygeek >a reference for using markdown with the editor or a deep and meaningful discussion Somewhere between the two, methinks... :-) Re: FB Messenger supports Markdown Hardware and Software Cloud-based Apps by Dani To be honest, I really didn't think that Markdown was mainstream enough to be adopted by Facebook. I created a Markdown plugin for WordPress, need some suggestions Programming by Terry_11 I recently have created a Markdown Plugin for WordPress. It has been tested some my friends, … like: What features do you need if you are using Markdown to write articles? Do you think this plugin is useful… Re: Converting markdown to HTML programatically Programming Software Development by pritaeas http://daringfireball.net/projects/markdown/ Convert MarkDown to MarkUP Programming Software Development by kilikou2 Hello Everybody. I am Kilikou and i would like to have someone to help with that. Can somebody refer me to a code in C language that can take a text (markDown) and convert it to HTML (markUp). Re: Convert MarkDown to MarkUP Programming Software Development by Salem [url]http://forums.devshed.com/c-programming-42/convert-markdown-to-markup-460021.html[/url] Regex to parse Markdown Programming Web Development by Dani … much appreciated. The editor that we use which syntax highlights Markdown text has has bug in which it highlights text as… Python implementations of markdown parsers that can produce HTML Programming Software Development by Irene26 Can somebody help me to convert markdown to html using python language. I'm not a programmer … CodeMirror Markdown editor toolbar Programming Web Development by Dani The Markdown editor that we use here at DaniWeb is called [CodeMirror](… Re: Markdown vs. BBCode Community Center Meta DaniWeb by Dani Here is another trick. You can use: ~~~ Code here ~~~ to force code snippets without indenting. As you know, it's ideal for copying/pasting in code because it saves you the task of having to indent. However, you can also do: ~~~ php <? echo "Force syntax highlighter to use php syntax"; ?> ~~~ or… Re: Markdown vs. BBCode Community Center Meta DaniWeb by TrustyTony Any way to get it actually put correct line numbers, instead of these imaginary ones ;) Re: Markdown vs. BBCode Community Center Meta DaniWeb by Dani I didn't write the syntax highlighter. I only use it. :) But it's javascript based, which means that if/when a bug fix comes out, it will be applied retroactively. If you can find a fix, be my guest: http://code.google.com/p/google-code-prettify/ Re: Markdown vs. BBCode Community Center Meta DaniWeb by Ezzaral What about ditching the alternating line highlight? It seems to make it less readable rather than more. Such highlight is helpful for tabular reports - not so much for code. Re: Markdown vs. BBCode Community Center Meta DaniWeb by TrustyTony It would be interesting to see every line numbered theme in action, this http://code.google.com/p/google-code-prettify/source/browse/trunk/styles/sons-of-obsidian.css, so that we could maybe spot where the program is mixed up. Many times it seems to count one line before code starts, but not allways. Also mistakes seem more rare with C-like syntax …