Questions tagged [markdown]

A lightweight markup language that compiles into HTML.

170 questions
68
votes
3 answers

Is it possible to directly embed an image into a Markdown document?

I know that I can display an image with the following syntax: ![](/imagepath) However, is it also possible to directly embed an image into the document to share the Markdown document with the image file directly contained inside it?
orschiro
  • 3,595
13
votes
2 answers

In Markdown, how do you put a table inside an ordered list?

Should it be possible to put a table inside an ordered list in markdown? If not, whats a recommended alternative way to do it?
Tim
  • 1,080
7
votes
2 answers

Doxygen: specify a markdown file as the main page

I know there seems to be a USE_MDFILE_AS_MAINPAGE property which should define a markdown file as the main page, but I tried with doxygen 1.8.5, nothing happened. This markdown file has been specified in INPUT, and MARKDOWN_SUPPORT is also set to…
xuhdev
  • 1,781
4
votes
1 answer

Is there a way to fix the numbering of a numbered list in Markdown?

I have a Markdown file that has numbered lists in it that look like this: 1. list item 1 1. list item 2 1. sublist item 1 1. sublist item 2 1. list item 3 It's rendered as: list item 1 list item 2 sublist item 1 sublist item 2 list…
2
votes
1 answer

Edit Etherpad in Markdown Editor?

Alright, this is somewhat difficult ... I have to work on a Markdown file simultaneously with a friend, so we want to use Etherpad to see each other's edits in realtime. However, if we write Markdown in our browsers, we won't see a live preview of…
2
votes
1 answer

How can I save markdown files with the .md file extension in Notepad?

I am using git and github with my research students and we document all of our work with markdown formatted files so they will look good in github. My students do not have strong computer and coding backgrounds so working with git and text files…
DQdlM
  • 2,729
2
votes
1 answer

To have "breaks" in Markdown documents

I am trying to use Markdown as a substitute for LaTex in my documents which do not have Mathematical formulee. I assume that the number of rows in one A4 is 80. Problem: to not to have two H1 headings in the same page If the problem occurs, rows…
1
vote
4 answers

To convert markdown -files effectively to HTML -files

I have the following file structure |--folder1 | |---1.markdown |--folder2 | |---2.markdown |--folder3 | |---3.markdown ... I would like to convert the markdown -files to HTML files such that the HTML -files are created to each specific…
0
votes
1 answer

Indenting a list entry in markdown

I am not sure if there is a correct way to do this in markdown. I have some text as below * lorem ipsum dola sit amet a hungry dog-- * hungry dog; * dog hungry; both dogs are hungry Rendering looks like this: lorem ipsum dola sit amet a…