Skip to content

Commit

Permalink
Copied example syntax into the README.
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed May 6, 2013
1 parent 72affd9 commit 5902577
Showing 1 changed file with 103 additions and 0 deletions.
103 changes: 103 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,109 @@ Define a `man` and file tasks which render all `*.md` files within the
require 'kramdown/man/tasks'
Kramdown::Man::Tasks.new

## Syntax

### Formatting

`code`

`code`

*emphasis*

*emphasis*

**strong**

**strong**

### Paragraphs

Normal paragraph.

Normal paragraph.

`--tagged`
Text here.

`--tagged`
Text here.

### Links

[website](http://example.com/)

[website](http://example.com/)

[bash](man:bash(1))

[bash](man:bash(1))

Email <bob@example.com>

Email <bob@example.com>

### Lists

* one
* two
* three

extra paragraph


* one
* two
* three

extra paragraph

1. one
2. two
3. three

extra paragraph

1. one
2. two
3. three

extra paragraph

### Horizontal Rule

-------------------------------------------------------------------------------

-------------------------------------------------------------------------------

### Blockquotes

> Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.
>
> --Antoine de Saint-Exupéry

> Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.
>
> --Antoine de Saint-Exupéry
### Code Blocks

#include <stdio.h>

int main()
{
printf("hello world\n");
return 0;
}

#include <stdio.h>

int main()
{
printf("hello world\n");
return 0;
}

## Requirements

* [kramdown] ~> 1.0
Expand Down

0 comments on commit 5902577

Please sign in to comment.