Questions tagged [markdown]

A markup language designed for people to write something in an easy plain text format, then be able to convert it to valid XHTML or HTML.

History

Markdown was originally created by John Gruber and Aaron Swartz. The intent of the project was to create an easy way for people to write something, then convert it to XHTML or HTML. Markdown has been implemented on many websites, including all the Stack Exchange network sites.

Syntax and examples

Emphasized text

*emphasis* or _emphasis_ (italics)

**strong emphasis** or __strong emphasis__ (bold)

Code

Code can be formatted with backticks (`):

`code goes here`

Or, for multiple lines of code, indenting the code by four spaces:

    multiple
    lines
    of
    code

Lists

* Unordered list (bullet points)
    * Subitem in an unordered list (indented by four spaces)


1. Ordered (numbered) list
2. Another item

Headings

# First level heading
## Second level heading
### Third level heading
#### Fourth level heading
##### Fifth level heading
###### Sixth level heading

For the first two headings, you can also use:

First level
===========
Second level
------------

Blockquotes

>A block quote can be placed with a ">" before it to properly format the quote.

Links

Links can be created by one of two ways:

[link text](URL "Link title") 

Or

[link text][URL]

A full list of the Markdown syntax can be found here. The project's home page can found at Daring Fireball.

39 questions
14
votes
1 answer

How can I send emails with Mail.app as text/markdown explicitly?

I write all my emails in plain text, not rich text or HTML, but I do use punctuation markup as has been popularized by Markdown and others (which were inspired by prior customs in plain-text email). There’s RFC 7763 now, which registers the…
Crissov
  • 734
  • 1
  • 9
  • 26
13
votes
1 answer

How can I read markdown files with QuickLook?

I would like to be able to read markdown (.md) files with Quick Look. Unfortunately, it just appears like this: Is there any way that I can be able to see the contents of this file? I don't care whether it's in rendered or unrendered format, just…
Thunderforge
  • 1,963
  • 8
  • 27
  • 38
9
votes
4 answers

Export from Notes.app to Markdown format?

Using notes is handy as you can have it in multiple devices and makes transition almost effortless. I'm willing to move some of these to Markdown so I can share the content and add formatting to it. Is it possible to be done by default? The only…
pablora
  • 213
  • 2
  • 5
7
votes
4 answers

generate Keynote presentation from text or Markdown?

Is there a way to automatically generate a Keynote presentation from a source file written in text format, Markdown format, or org-mode? I know that Pandoc and other tools can generate HTML-based slideshows from Markdown. But Keynote allows you to…
incandescentman
  • 945
  • 9
  • 23
7
votes
1 answer

Markdown and Pages

I am looking for the best combination for working on a structured document and sharing it in Markdown format. My favorite editor is Pages, in full screen mode. There I can see how the finished document actually will look like. Unfortunately, there…
ZioBrando
  • 201
  • 2
  • 6
7
votes
3 answers

Markdown to .doc or .rtf

I'm interested in using a variation of Markdown for my work, but my target format is Word files (this is what my clients use, it's non-negotiable). Most implementations of Markdown would leave me with a circuitous route at best to get a Word…
Adam Rice
  • 1,108
  • 1
  • 9
  • 17
6
votes
1 answer

Why does the Kind column show the Chinese characters 文件 for Markdown files?

Finder shows the Chinese characters 文件 next the md text in the Kind column for Markdown files: Same is shown in the inspector: Through Google Translate I found that the characters 文件 mean file in Chinese. Why is Finder showing the word file in md…
Saaru Lindestøkke
  • 5,509
  • 6
  • 39
  • 67
5
votes
2 answers

Menu bar app for plain text/markdown notes?

I'm converting from Evernote to Dropbox/Markdown for my notes. And I really love the quick note capture menu bar applet for Evernote (image below). Anyone know of something similar for plain text notes? Ideally it quickly stores the note as a .md…
eivindml
  • 111
  • 1
  • 10
4
votes
2 answers

Any free and reliable app to display Markdown documents in macOS?

Sometimes we add a file readme.txt in our folder for notes or things to know about. Using Markdown, it is pretty easy to make it into a nicely formatted document. Can we write a README.md and can use any free and reliable app and use the Mac to read…
nonopolarity
  • 9,358
  • 40
  • 110
  • 172
4
votes
1 answer

Preventing automatic backtick `

When I type a backtick ` it's underlined and I can press space to make it this character ´. This is annoying because I never need this when I type in markdown I only need the backtick. So I wonder how I can turn this off?
Jonathan
  • 6,040
  • 1
  • 10
  • 6
4
votes
4 answers

Auto Generating and Printing PDF Files From Markdown?

I'm looking for a way to automatically have my computer generate and print PDF files from a folder full of markdown files. So, every morning at 5AM I'd want my computer look at my /markdown-files folder, create a bunch of PDFs to go into a…
CGP Grey
  • 415
  • 2
  • 7
  • 15
4
votes
2 answers

How can I convert HTML/Rich Text to Markdown in Automator?

I have an Automator service that takes selected text and saves it in a file. However, bold, italics, and linked URLS aren't preserved. Is there a way I can convert it to Markdown before I save it? When I searched Google, I only found guides to…
user76189
3
votes
3 answers

How can I create plaintext files with Markdown syntax and convert them to PDF format?

I am very much a novice at this, so please bear with me. I'm intrigued by the idea of using Markdown. I want to be able to write my stuff in a plaintext editor on OS X and iOS and save it in Dropbox in .txt format using a Markdown syntax. I don't…
Macrod
  • 758
  • 3
  • 13
  • 26
3
votes
0 answers

Batch Converting RTF to Markdown?

Anyone have any help, tools, advice, etc. on batch converting RTF to Markdown in MacOS? I've used Automator a little but when I tried the advice in this thread, I couldn't get it to work. I'd love some advice on how I can handle this. I was able to…
Justen
  • 31
  • 2
3
votes
1 answer

Ulysses on macOS - share local content between user accounts [without iCloud]

Does anybody know how to share local Ulysses content across Mac user accounts? I can see the local content is not stored at a user-specific directory: ~/Library/Containers/com.soulmen.ulysses3 I have a Admin account and a Standard account. I want…
rustyMagnet
  • 133
  • 3
1
2 3