Tagged Questions
29
votes
11answers
4k views
How can I mix LaTeX in with Markdown?
I've been using Markdown for class notes, and it's great. I even do some preprocessing on the Markdown so I can do things like tables. But this term I'm teaching a class with a lot of math, and I'd ...
17
votes
3answers
387 views
Wiki or Markdown-like syntax for simple forms?
Is there any simple language similar to Markdown or one of the Wiki Markups that gets converted into HTML form elements?
For example:
name* = ___________
sex = (x) Male () Female
phones = [] ...
14
votes
4answers
1k views
.NET - Server-side Markdown to HTML Conversion
What is a good open source .NET library to convert markdown to HTML on the server?
If this has been answered somewhere else please point me to the post. Thanks.
13
votes
5answers
4k views
Markdown and image alignment
I'm helping out a friend with a non-profit site that publishes articles in issues each month. They are mostly straightforward, and I think using a markdown editor (like the wmd one here in SO) would ...
11
votes
3answers
537 views
How to remove HTML tags from user content? [closed]
NOTE: I asked this question already and it migrated to meta. This is not a specific question about stack overflow so much as it's a question about a behavior I would like to include in my own project. ...
11
votes
2answers
2k views
Cross-reference (named anchor) in markdown
Is there markdown syntax for the equivalent of:
Take me to <a href="#pookie">pookie</a>
...
<a name="pookie">this is pookie</a>
10
votes
4answers
619 views
Why do I need Markdown?
Why do I need a Markdown with a front edit editor like WMD? What does the markdown do to the content that’s sent from the WMD editor?
How does Markdown store the content in the backend? Is it the same ...
9
votes
3answers
1k views
Is there javascript to convert HTML to markdown?
There is showdown.js to convert markdown to HTML, and PHP Markdown to convert markdown to and from HTML. My question is, is there javascript library to convert HTML to markdown?
8
votes
2answers
219 views
Any WPF based Markdown renderer?
We have WPF based application. We have separate String repository where the texts are edited in the web. In our WPF application, we use the text from string repository. Our document team use the some ...
8
votes
3answers
490 views
What markup language for richly formated content?
When you are developing a web-based application and you want to allow richly formatted text from the user you have to make a choice about how to allow that input. Many different markup languages have ...
6
votes
3answers
258 views
Use markdown (or similar) to edit text and then output to latex > pdf| html
I am editing a lot of documents in latex, that consist of code listings and are currently output to pdf.
Since I am working in teams on those documents, I often need to manually integrate changes ...
6
votes
4answers
2k views
markdown target=“_blank”
Is there a way to create a link in markdown that opens in a new window? If not, what syntax do you recommend to do this. I'll add it to the markdown compiler I use. I think it should be an option.
6
votes
3answers
217 views
Markdown or HTML
I have a requirement for users to create, modify and delete their own articles. I plan on using the WMD editor that SO uses to create the articles.
From what I can gather SO stores the markdown ...
6
votes
3answers
569 views
Should i sanitize markdown?
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 ...
6
votes
1answer
834 views
How do I set an HTML class attribute in Markdown?
If I have some Markdown like
## My Title
A paragraph of content here.
code_line(1);
// a code comment
class MoreCode { }
and more text to follow...
How can I set a class on the ...
5
votes
1answer
255 views
Is there a decent, customisable, HTML to Markdown Java API?
I want to save text I scrape from various sources without the HTML tags that are on it, but also keeping as much of the structure as I reasonably can.
Markdown seems to be the solution to this (or ...
5
votes
3answers
2k views
how to display content with raw html
@post.body has following content (which is converted from Markdown by using RDiscount).How should I render it to the user in what it means? i.e I want to render it as strong text emphasized text...
...
5
votes
5answers
2k views
Regular expression to convert mark down to HTML
How would you write a regular expression to convert mark down into HTML? For example, you would type in the following:
This would be *italicized* text and this would be **bold** text
This would ...
5
votes
6answers
2k views
A WYSIWYG Markdown control for Windows Forms?
[We have a Windows Forms database front-end application that, among other things, can be used as a CMS; clients create the structure, fill it, and then use a ASP.NET WebForms-based site to present the ...
4
votes
1answer
104 views
Designing table definition syntax for Markdown
I have made no secret of my disdain for BBCode and support for more readable text-to-HTML converters like Markdown, which is what SO uses. "Canonical" Markdown however doesn't have a syntax to define ...
4
votes
2answers
523 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)
...
3
votes
3answers
144 views
Convert Markdown + CSS to .doc or .pdf
Been using Markdown using Mou on the Mac alot recently, and would really like to use it in my technical writing - it is much easier than messing around with .doc formats.
The question is what is the ...
3
votes
1answer
160 views
Making Pagedown work with MarkItUp Editor
I have an MVC3 site that needs to handle user posts. I am trying to use MarkItUp for the text edit because I like its full featured, easy to customize, functionality. However, I am using two markdown ...
3
votes
3answers
195 views
Best way of converting Markdown to an offline documentation format?
I really love using Markdown in documentation. I'm wanting to provide an offline copy of my documentation however. So what would be the best way of converting Markdown to either flat HTML or something ...
3
votes
1answer
140 views
Is there a VBScript implementation of Markdown?
Does anybody know a VBScript implementation of Markdown?
I want to use it in my webpages written in Classic ASP to convert Markdown markup to HTML.
UPDATE Jan 26: Nobody?
3
votes
1answer
866 views
How can I format Multimarkdown tables?
I'm writing Multimarkdown tables following the guidelines under the Table section in the syntax guide, and I wish to convert them to HTML using Text::MultiMarkdown .
It works great, The only problem ...
3
votes
4answers
278 views
Get first few elements of a html fragment with xpath on ruby
For a blog like project, I want to get the first few paragraphs, headers, lists or whatever within a range of characters from a markdown generated html fragment to display as a summary.
So if I have
...
3
votes
2answers
2k views
Using Markdown, how do I center an image and its caption?
I want to end up with:
Hello there!
<image>
This is an image
Hi!
Where the image and the text This is an image are centered on the page. How do I accomplish this with Markdown?
...
3
votes
1answer
142 views
How can I disallow all HTML using markdown (PHP and JS)?
I'm using the PHP markdown library: http://michelf.com/projects/php-markdown/ and the Javascript markdown library: http://attacklab.net/showdown/
I want to disallow all HTML, both the versions of ...
2
votes
2answers
90 views
Can't convert markdown into HTML using StackExchanges's PageDown
I have a method of storing straight markup code (generate by PageDown's editor) into a database. On another page, I grab the markup from the database and run it through the markdown converter, however ...
2
votes
2answers
332 views
Markup language instead of HTML [closed]
I'm building a website, but don't want to write any HTML (or XML). I was thinking that I could use a nicer markup language instead.
I've looked at Markdown and reStructuredText, but they don't ...
2
votes
1answer
132 views
Is this the right version to use of the WMD Markdown editor?
This Google code repository called "wmd-new" seems to be latest and most active version of the WMD Markdown editor. It has recent modification dates.
However, it has a link labeled "WMD development ...
2
votes
1answer
169 views
Apply multiple filters in haml (or wrap :markdown filter's content with a CDATA tag)
I'm using HAML to generate a XML output. Inside one of the element I'm using the :markdown filter to generate a small block of HTML code (for example, an unordered list of items).
!!! XML
%root
...
2
votes
4answers
2k views
How to run Ruby/Python scripts from inside PHP passing and receiving parameters?
I need to turn HTML into equivalent Markdown-structured text.
OBS.: Quick and clear way of doing this with PHP & Python.
As I am programming in PHP, some people indicates Markdownify to do the ...
2
votes
4answers
153 views
How can I get valid first 300 characters of HTML or Markdown?
I'm creating a blog (and the rest of a website) using Python and Flask. Blog posts are written in Markdown and converted to HTML using the creatively named Markdown in Python. Both the Markdown (for ...
2
votes
1answer
94 views
Markdown Styles not Showing
I am working on a application that takes user input in the form of Markdown and displays that input on a page. The markdown gets converted to HTML just fine but for some reason the bold and italics ...
2
votes
1answer
134 views
WMD Markdown from MySQL to HTML server site without showing the textarea
I store Markdown code in MySQL, and I’m worried about how to convert it back to HTML without transferring it through the WMD control and using massive data transfer.
2
votes
4answers
883 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 ...
2
votes
3answers
361 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 ...
2
votes
1answer
354 views
Markdown.NET incorrectly does not escape HTML-Tags
it seems that Markdown.NET does not escape the following:
<script>
which is kind of a problem...
Is there any other way of generating HTML from Markdown on the server with ASP.NET?
2
votes
1answer
545 views
How do i convert WMD markdown syntax to HTML on my site?
Am using django and am implementing WMD on my site, am just wondering how do i convert the markdown syntax to HTML for display purposes, is there some sort of function i should call to do this ...
2
votes
4answers
672 views
Render markup on-the-fly or store html?
Any advice what has worked for you when dealing with user-entered markup, e.g. wiki or markdown. I have both CPU & database space costs, so I'm not sure which way to go.
Store markup in database ...
1
vote
1answer
48 views
Handling Code Blocks with Markdown (Pagedown)
I'm betting I'm using something incorrectly here...
My MVC3 application uses Pagedown to provide a javascript text editor, markdown converter, and live preview. I use its "santizer" object to strip ...
1
vote
1answer
44 views
How do I make a link to a section of a document in the same directory(pandoc markdown->html output)
I have two fairly simple pieces of documentation(written in markdown that is used to generate html files with pandoc). I'd like to be able to link to a section of the second document from the first ...
1
vote
1answer
60 views
Un-markdown text?
So I'm using Markdown to format text input from user:
http://michelf.com/projects/php-markdown/
But I'm doing this destructively, so the text turns into HTML before database update. Can I transform ...
1
vote
0answers
40 views
What options are out there for an Cross DOmain WYSIWYG editor?
I'm writing a 3rd party API for use in client websites and I need a text editor with some basic functionality. It needs to be WYSIWYG as the end user is non technical. I've looked around and the ...
1
vote
1answer
303 views
Escape HTML in markdown in HAML
Is it possible, in Rails 3.1, to escape HTML in markdown in HAML to avoid XSS? I mean when you do something like:
:markdown
Hello #{@user.name}
Thanks.
1
vote
1answer
81 views
How can I convert markdown to html (should i use an existing script)?
What is the best way to convert from markdown to html. Should i write my own script of use something already out there?
Are there any existing markdown converters you can recommend? that are ...
1
vote
1answer
184 views
Maruku incorrectly parsing second line of code blocks?
I'm using Maruku (Ruby) to parse some Markdown formatted text. I have a problem when trying to format a block of code like such:
This is a normal line
# pretend this line is empty
printf("First ...
1
vote
1answer
94 views
How to approach markdown storage in the db for user content?
I was thinking about allowing users to edit site content with markdown, as it's simple and easy. The question now is how do I store that input - should I convert it to html on save and then store raw ...