Markdown & Pandoc - majuma/Markdown-And-Pandoc GitHub Wiki
A few things are required to achieve this goal
Install pandoc in your osx
Install textwrangler or a text editor that will allow you to save in .md format
In you text editor create a new file
A few general rules that apply here
#
At start of a Main Section
##
At start of a Subsection
*
On both sides of a word or sentence makes the font italic
**
On both sides of a word or sentence makes the font bold
To create a new line, leave at least two space or press enter
First markup your document in YAML (look this up online) as follows
---
Title: My First Markdown conversion
Author: Misses
Date: March 10 2014
---
Go on and create the different sections abiding by the rules above
#
(section 1)
**
Phenomenal Woman**
##
(subsection 1.1)
Pretty women wonder where my secret lies.
I'm not cute or built to suit a fashion model's size
But when I start to tell them,
##
(subsection 1.1)
They think I'm telling lies.
I say,
It's in the reach of my arms
##
(subsection 1.2)
The span of my hips,
The stride of my step,
The curl of my lips.
##
(subsection 1.3)
I'm a woman
Phenomenally.
Phenomenal woman,
That's me.
#
(Section 2)
**
Refusal**
##
(subsection 2.1)
Beloved,
In what other lives or lands
Have I known your lips
Your Hands
Your Laughter brave
Irreverent.
Those sweet excesses that
I do adore.
What surety is there
That we will meet again,
On other worlds some
Future time undated.
I defy my body's haste.
Without the promise
Of one more sweet encounter
I will not deign to die.
[^1]: Poems By *Maya Angelou*
[Find More Here](http://www.poemhunter.com/maya-angelou/poems/)

The last three lines are a footnote, a link and an image respectively. Save your file with the .md extension and close (I call my file Poems.md) Save the file and any image used within the same folder
Open your terminal Change into the folder that contains both your image used in the above .jpg reference and the .md file that you were referring.
To do the conversion, to a word (.docx) format, run the following code, keeping in mind the names used.
pandoc -o poem.docx poems.md
This should run flawlessly and create the word document. Ls into the folder to confirm that the file has been created.