Markdown is a lightweight markup language. Markdown documents compile to XHTML.

learn more… | top users | synonyms

0
votes
1answer
40 views

batch convert HTML to Markdown

I have a whole lot of html files that live in one folder. I need to convert these to markdown I found a couple gems out there that does this great one by one. my question is... How can I loop though ...
0
votes
0answers
7 views

in Jekyll and markdown how can I get it to display my pages in sorted order?

In Jekyll and markdown how can I get it to display my pages in sorted order? I am trying to find a way to make the pages page on my blog display in sorted order but title of the page, right now I ...
3
votes
0answers
32 views

Not allowing javascript links in markdown [duplicate]

The primary XSS vulnerability in (PHP) markdown after disallowing HTML tags seems to be that it allows links like this: [foo](javascript:alert('xss')) which will turn into <a ...
2
votes
3answers
30 views

automatically create mini-website from Markdown files?

Is there a tool that will automatically generate a mini-website---with automatically generated navigation---from locally-stored Markdown files? I'm envisioning a service that will integrate with my ...
0
votes
0answers
15 views

how to add make a line-through in jekyll?

i'd like to add a line-throught in my post, and i try like this: ~~hello,world~~ it's ok in my Mou(a software display markdown content), but it doesn't work in jekyll ,it tell me REXML could not ...
0
votes
1answer
43 views

Figure position in markdown when converting to PDF with knitr and pandoc

I'm trying to control the position of a plot when converting to PDF using knitr and pandoc. My .Rmd file looks this: # My report Some text some text some text some text some text some text some text ...
0
votes
0answers
10 views

RedCarpet string missing

I have a Rails app which includes Redcarpets to process markdown. However, when I write in my article body, it converts nothing. I want to render it to canvas as a string. My code is renderer = ...
2
votes
1answer
39 views

multiline code block in markdown adds unwanted tabs

today I'm implementing my page in nanoc (haml templates) and I wanted to write some posts in markdown, but when it goes to multiline code blocks something weird is happening - second line in code ...
-1
votes
0answers
19 views

GitHub pages without Jekill knowledge - quick start [closed]

I have static website (HTML pages). It is hosted on GitHub.io. I want to add more content using Markdown for authoring. GitHub pages is actually using Jekill. I just need quick way to start. What ...
0
votes
1answer
43 views

How to import Python Markdown and pygments when developing Sublime Text plugins?

I copied markdown and pygments folder to my plugin's path, and did this: try: import sys sys.path.append("./markdown") sys.path.append("./pygments") import markdown except ...
0
votes
1answer
10 views

Markdown custom ID gets injected to heading tags

I'm trying to make a website with Jekyll, but everytime I use #something to get a first level heading tag of <h1>something</h1>, instead I get <h1 id=something>something</h1> ...
-3
votes
1answer
51 views

AngularJS : Watch element.html() in a directive

I am looking to create a mardown directive (restrict A) which would make me able to use same recipient for ng-view. So I would basically load only .md files in views and apply my function on its ...
0
votes
0answers
28 views

Python Markdown - Not adding codehilite

I am using Flask to write a Blog, with that I am using Markdown's Python library to generate HTML for me, I am willing to have syntax highlighting, therefore I am using markdown.markdown(string, ...
0
votes
2answers
52 views

Need help identifying this code [closed]

What is this written in, and how can I convert it to HTML? http://pastebin.com/ePPXkhMP I need to edit it, but not sure how to convert it to HTML. I need to style it, but not sure how to start. ...
0
votes
0answers
23 views

Preventing XSS when user edits original Markdown input

I'm building a site with user-generated content using Pagedown (though any form of Markdown would work), and I wish to store both the original markdown and the sanitized HTML in the database so that ...
1
vote
1answer
15 views

github Readme - reference issue

How can I reference (insert a relative link to) an issue in my github Readme.md? I found the following document GitHub Flavored Markdown where it is described how to reference to an issue in a ...
0
votes
1answer
20 views

How can I insert a bullet (<li>) element in Markdown-formatted YARD documentation

I am using YARDoc with Markdown to document my Ruby code, and want to have an unordered list (HTML "bullets") in the documentation for a method. Here's what I have so far: $ cat file.rb class Foo # ...
0
votes
1answer
22 views

Markdown ordered list are merged into one line

Here's how i wrote my markdown file: And here's what i got : Any help ? Thanks ! === UPDATE === I'm using Jekyll to generate static pages for pages.github.com.
0
votes
0answers
22 views

HtmlEditorExtender asp.net

I wanted to use editor to convert the plain text from the textarea to html so I used markdownsharp on the server and pagedown for preview on the client. I have not used the Htmleditorextender of ...
0
votes
2answers
26 views

How do you display a section of plain text in github markdown?

I'm having a hard time finding any real answer to this (really simple?) question on google, and I'm starting to worry that there is no solution. I am learning github markdown. I would like to show ...
0
votes
1answer
40 views

Syntax highlighting in Jekyll based on YAML variable

When writing markdown with code to be read by Jekyll, you can enable syntax highlighting with {% highlight python %} x = ('a', 1, False) {% endhighlight %} However, this becomes a bit verbose if ...
0
votes
2answers
34 views

How can I generate the same HTML in Ruby that pagedown generates?

Most Markdown parsers generate very similar HTML output, but it can slightly vary. Some parsers are strict and allow only this is **bold** but not this is ** bold ** others accept both. There are ...
1
vote
4answers
83 views

Static web site with Markdown (GitHub pages actually) / Jekill alternatives

I need to create small web-site with static pages. I like Markdown for authoring HTML, but I don't like to do generation by myself. I like GitHub, that can render .md files for me and I want to host ...
0
votes
0answers
8 views

Transfer of a line in markdown preview

Please help. I develop a site on Django and I try to integrate mardown-editor Pagedown into a form of comments. (as on stackoverflow). Everything is all right, except for a preview. If the line is ...
1
vote
1answer
20 views

Automatic <a> around headings in Pandoc

This Markdown code: # Introduction Turns into this HTML code when compiled with Pandoc: <h1 id="introduction"><a href="#introduction">Introduction</a></h1> The way I use ...
0
votes
0answers
30 views

Add new button to PageDown markdown editor

How do I add a new button to the PageDown markdown editor located at http://code.google.com/p/pagedown/? Ideally, the button would create a dialog like that used to add a link or image, but any type ...
1
vote
1answer
24 views

How to view an online markdown document in an online editor

I have an online markdown doc, say www.example.com/README.md. I want an online application that can take this URL and render the markdown in HTML. Something like this: ...
0
votes
0answers
50 views

Why does GitHub markdown add two line breaks after a code block with syntax highlighting?

I have noticed that whenever I use a code block with syntax highlighting in GitHub markdown language there will be an extra line break added right before the code-block. e.g.: some text ```bash ...
0
votes
1answer
45 views

Expressions in markdown using knitr

I'm trying to use an inline expression in a .Rmd markdown file. I'm converting the .Rmd file to a PDF using Pandoc. The contents of my file is like this: Report ...
2
votes
1answer
58 views

reference knitr chunk in R markdown

I'm using knitr to embed R code within a markdown (.Rmd) file. I'm converting the file to a PDF file with Pandoc. The contents of my .Rmd file looks like this: Report ...
0
votes
0answers
29 views

Syntax highlighting Markdown on a webpage

I am writing a basic Markdown editor and wish for the Markdown to be syntax highlighted. There seem to be plenty of resources on how to have code within Markdown highlighted, but I want the Markdown ...
2
votes
1answer
48 views

Pandoc insert appendix after bibliography

I'm using the knitr package and pandoc in R to convert a .Rmd file to a PDF. Pandoc is linked to a .bib file and automatically inserts the bibliography at the end of the PDF The entries in my .bib ...
2
votes
1answer
40 views

Reduce cell width and font size of table using pandoc.table()

I'm using knitr and pander to make a table in a markdown file. I'm converting the markdown file to a PDF using Pandoc from within R. This code: library(knitr) ```{r myTable, echo=FALSE, ...
0
votes
1answer
40 views

How do I use markdownify in Jekyll to show an excerpt on the index

I'm looking to show a short excerpt of text from a longer post or page on the index page. I was going to use a custom variable in the Front Matter and grab that, but then I saw the filter for .excerpt ...
1
vote
1answer
39 views

centre title in PDF converted from markdown using Pandoc

I'm converting a markdown document to a PDF document using Pandoc from within R. I'm trying to centre the title. So far, I've tried: <center># This is my title</center> and -># ...
1
vote
0answers
19 views

Update github markdown Tasklists ( GFM ) via commit

As you know you can create a tasklist in GFM (github flavoured markdown) by using the tags - [ ] for unchecked task - [x] for a checked task I was wondering if it is somehow possible to check a ...
0
votes
1answer
44 views

create function to alter PDF margin width in PDF files using Pandoc

I'm converting a markdown document to a PDF using Pandoc from within R. The default margins of PDFs outputted by Pandoc are too large. In this post: Set margin size when converting from Markdown to ...
0
votes
0answers
16 views

Auto completion of Pandoc style citations in markdown using TextMate

In TextMate, auto completion of code is achieved by pressing the escape key (on Mac at least). I'm hoping I can also auto complete citations. I'm writing my text in a markdown document, and using ...
0
votes
1answer
26 views

Rowspan syntax in Markdown

I'm trying to create a table in markdown syntax where a cell's content spans across various rows. How can I achieve this? The table should look something like: ...
0
votes
1answer
21 views

Are knitr subcaptions only for Latex?

I am using RStudio/knitr/markdown/pandoc/docx in Windows 7. I am having trouble getting captions on my plots when I print two of them side by side. In the following example, I get no caption in my ...
2
votes
4answers
207 views

Wrap markdown in appropriate HTML with JavaScript

I've got a content-editable <div>. When a correct markdown syntax is entered into the div, I need it to add the correct HTML around the outside, but preserve the markdown characters within. For ...
1
vote
1answer
97 views

AngularJS ng-model binding doesn't run a custom directive on dynamically added content

I want to create a side-by-side markdown & preview, where the dynamically entered content is rendered as you type. I have a custom directive for a markdown element, which works on static text, ...
2
votes
1answer
37 views

Github pages: where's the markdown?

When I created a github page I got to edit markdown. Great. Now I want to edit my page. Problem is there's no markdown. Just an index.html and a params.json that literally contain duplicated ...
0
votes
1answer
31 views

I'm using nodejs express to build a blog, and this blog can write by markdown, how to add code highlihgter to it?

I'm using nodejs express to build a blog which can write by markdown, how to add code highlighter to it? I try to use syntaxhighlighter.js to make it done, but it can't work. Because it need write ...
0
votes
1answer
28 views

How can doc/docx files be converted to markdown or structured text?

Is there a program or workflow to convert .doc or .docx files to Markdown or similar text? PS: Ideally, I would welcome the option that a specific font (e.g. consolas) in the MS Word document will ...
0
votes
0answers
19 views

Redcarpet modification

I need to add some functionality to standard markdown in my project: Spoilers [toggle] ... [/toggle] Wiki links [namespace:page] Links to user profiles [*username] etc. What is correct way to do ...
0
votes
2answers
44 views

Markdown blockquote failure

I'm using this jQuery markdown for my pages. The jQuery code is as follows: var converter = new Markdown.Converter(); $(document).ready(function(e) { $('#content').html( ...
0
votes
0answers
43 views

How can I render markdown with EJS using Express / Node.JS?

I have been using the Express web framework for Node.JS, and have been using the markdown parser chjj/marked in order to parse markdown into HTML. I have also been able to render this markdown using ...
0
votes
0answers
24 views

Is there any ways to tune JSDoc with markdown plugin gfm to highlight github makrdown syntax right?

Is there any ways to tune JSDoc with markdown plugin gfm to highlight github makrdown syntax? Example For example here is original highlighting: https://github.com/darlingjs/darlingjs and gfm ...
0
votes
2answers
42 views

HTML code into README.md on Github

I tried to put some HTML snippets into my README.md on Github but the HTML codes are executed. How to do? <h2>Example of code</h2> <pre> ...

1 2 3 4 5 23