1
vote
3answers
64 views
Markdown vs. HTML in a CMS
I'm working on a fairly large CMS-like app that includes a forum, wiki pages, etc. What whould you chose between Markdown and HTML? I'm concerned about usability and the fact non-techie people will …
0
votes
5answers
65 views
WMD Preview Doesn’t Match Output
I am using WMD in a google app situation whereby the site administrator can update the pages of the site and the users see the information.
The preview function is working fine and I can see the …
1
vote
1answer
45 views
PHP Markdown \n Question
I'm using http://michelf.com/projects/php-markdown/ for my markdown library and my question is that if i edit and remove the \n\n functionality would this work
Because the users that i have, are …
-1
votes
3answers
49 views
Markdown live preview in Textarea?
Are there any Javascript Markdown editing toolbars or libraries that show the live preview within the textarea and hide the formatting marks (, _ etc), similar to TinyMCE's implementation?
If not, …
1
vote
2answers
38 views
markdown to HTML with customised WMD editor
For my application I customized slightly the way WMD behaves so when user enters empty lines, these are reflected in HTML output as <br />'s. Now I came to a point when I should store it …
1
vote
3answers
80 views
How do I make django’s markdown filter transform a carriage return to <br />?
How can I change the default behavior in the markdown filter so that it transforms a newline to a br tag?
0
votes
1answer
23 views
wmd markdown code problem
hi all
i m using wmd markdown editor in my project and i have a problem with code tags:
if i enter a code snippet , markdown does not convert to html correctly it converts in "<p>" tags but if i …
2
votes
2answers
67 views
I seek parser markdown-file for presentation
hi,
I search web-based markdown-file parser to presentation.
I want to presentation from online markdown-file, realtime parse.
Because I want to manege markdown-files on git repository like github.
…
0
votes
3answers
65 views
Django templatetag for rendering a subset of html
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.
Does anyone know of a …
4
votes
2answers
102 views
Computing article abstracts
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, …
0
votes
3answers
72 views
Request for comments: What should the syntax be to include code snippets in Markdown? (from external files)
I've been using Markdown recently.
One of my biggest problems with Markdown is that Markdown has no syntax for including files within a document (vs., say, the listings package for LaTeX).
I'd like …
0
votes
1answer
45 views
Python Markdown: Markdown Inside HTML Blocks
Is there an extra for Python Markdown that supports Markdown inside HTML block elements, e.g. div, p
i.e. is there a way to convert this:
<div id="content">
[Google](http://www.google.com)
…
0
votes
2answers
58 views
Markdown and XSS
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
convert markdown to html
sanitize html (w/whitelist)
insert into …
0
votes
2answers
90 views
Is it the best practice to store content in the database as html when content is written in markdown?
Or is just saving markdown and rendering it on requests usually okay?
I'm writing a site that uses markdown for content. Stack overflow similarly uses markdown for comments and questions.
I'm …
2
votes
3answers
100 views
What’s a good syntax for an HTML link markdown to make internal links easier?
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:
Bah bah bah reference: [[a]]
And it would …
