You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example used from this site: [markitdown.net](http://www.markitdown.net/markdown)
4
+
5
+
This note demonstrates some of what [Markdown][1] is capable of doing.
6
+
7
+
*Note: Feel free to play with this page. Unlike regular notes, this doesn't automatically save itself.*
8
+
9
+
## Basic formatting
10
+
11
+
Paragraphs can be written like so. A paragraph is the basic block of Markdown. A paragraph is what text will turn into when there is no reason it should become anything else.
12
+
13
+
Paragraphs must be separated by a blank line. Basic formatting of *italics* and **bold** is supported. This *can be **nested** like* so.
14
+
15
+
# Lists
16
+
17
+
### Ordered list
18
+
19
+
1. Item 1
20
+
2. A second item
21
+
3. Number 3
22
+
4. Ⅳ
23
+
24
+
*Note: the fourth item uses the Unicode character for [Roman numeral four][2].*
25
+
26
+
### Unordered list
27
+
28
+
* An item
29
+
* Another item
30
+
* Yet another item
31
+
* And there's more...
32
+
33
+
# Paragraph modifiers
34
+
35
+
### Code block
36
+
37
+
Code blocks are very useful for developers and other people who look at code or other things that are written in plain text. As you can see, it uses a fixed-width font.
38
+
39
+
You can also make `inline code` to add code into other things.
40
+
41
+
### Quote
42
+
43
+
> Here is a quote. What this is should be self explanatory. Quotes are automatically indented when they are used.
44
+
45
+
## Headings
46
+
47
+
There are six levels of headings. They correspond with the six levels of HTML headings. You've probably noticed them already in the page. Each level down uses one more hash character.
48
+
49
+
### Headings *can* also contain **formatting**
50
+
51
+
### They can even contain `inline code`
52
+
53
+
Of course, demonstrating what headings look like messes up the structure of the page.
54
+
55
+
I don't recommend using more than three or four levels of headings here, because, when you're smallest heading isn't too small, and you're largest heading isn't too big, and you want each size up to look noticeably larger and more important, there there are only so many sizes that you can use.
56
+
57
+
## URLs
58
+
59
+
URLs can be made in a handful of ways:
60
+
61
+
* A named link to [MarkItDown][3]. The easiest way to do these is to select what you want to make a link and hit `Ctrl+L`.
62
+
* Another named link to [MarkItDown](http://www.markitdown.net/)
63
+
* Sometimes you just want a URL like <http://www.markitdown.net/>.
64
+
65
+
## Horizontal rule
66
+
67
+
A horizontal rule is a line that goes across the middle of the page.
68
+
69
+
---
70
+
71
+
It's sometimes handy for breaking things up.
72
+
73
+
## Images
74
+
75
+
Markdown can also contain images. I'll need to add something here sometime.
76
+
77
+
# Finally
78
+
79
+
There's actually a lot more to Markdown than this. See the official [introduction][4] and [syntax][5] for more information. However, be aware that this is not using the official implementation, and this might work subtly differently in some of the little things.
A theme for Lightpaper that is intended for export to PDF
4
+
This theme is intended to be used for PDF for print. It emphasizes good readability with a clean font and sizing.
5
+
6
+
## Example
7
+
8
+
9
+
10
+
11
+
## Installation
12
+
13
+
Look at the [Lightpaper Repository](https://github.com/ClockworkEngine/LightPaper-Support/blob/master/LightPaper%20for%20Mac/LightPaper%20for%20Mac%20-%20Adding%20Custom%20Themes.md) for installation instructions.
0 commit comments