okay, Mou.app is an UTTER PIECE OF SHIT.
Showing
1 changed file
with
1 additions
and
209 deletions
1 | # Mou | 1 | # CasperJS [![Build Status](https://secure.travis-ci.org/n1k0/casperjs.png)](http://travis-ci.org/n1k0/casperjs) |
2 | |||
3 | ![Mou icon](http://mouapp.com/Mou_128.png) | ||
4 | |||
5 | ## Overview | ||
6 | |||
7 | **Mou**, the missing Markdown editor for *web developers*. | ||
8 | |||
9 | ### Syntax | ||
10 | |||
11 | #### Strong and Emphasize | ||
12 | |||
13 | **strong** or __strong__ ( Cmd + B ) | ||
14 | |||
15 | *emphasize* or _emphasize_ ( Cmd + I ) | ||
16 | |||
17 | **Sometimes I want a lot of text to be bold. | ||
18 | Like, seriously, a _LOT_ of text** | ||
19 | |||
20 | #### Blockquotes | ||
21 | |||
22 | > Right angle brackets > are used for block quotes. | ||
23 | |||
24 | #### Links and Email | ||
25 | |||
26 | An email <example@example.com> link. | ||
27 | |||
28 | Simple inline link <http://chenluois.com>, another inline link [Smaller](http://smallerapp.com), one more inline link with title [Resize](http://resizesafari.com "a Safari extension"). | ||
29 | |||
30 | A [reference style][id] link. Input id, then anywhere in the doc, define the link with corresponding id: | ||
31 | |||
32 | [id]: http://mouapp.com "Markdown editor on Mac OS X" | ||
33 | |||
34 | Titles ( or called tool tips ) in the links are optional. | ||
35 | |||
36 | #### Images | ||
37 | |||
38 | An inline image ![Smaller icon](http://smallerapp.com/favicon.ico "Title here"), title is optional. | ||
39 | |||
40 | A ![Resize icon][2] reference style image. | ||
41 | |||
42 | [2]: http://resizesafari.com/favicon.ico "Title" | ||
43 | |||
44 | #### Inline code and Block code | ||
45 | |||
46 | Inline code are surround by `backtick` key. To create a block code: | ||
47 | |||
48 | Indent each line by at least 1 tab, or 4 spaces. | ||
49 | var Mou = exactlyTheAppIwant; | ||
50 | |||
51 | #### Ordered Lists | ||
52 | |||
53 | Ordered lists are created using "1." + Space: | ||
54 | |||
55 | 1. Ordered list item | ||
56 | 2. Ordered list item | ||
57 | 3. Ordered list item | ||
58 | |||
59 | #### Unordered Lists | ||
60 | |||
61 | Unordered list are created using "*" + Space: | ||
62 | |||
63 | * Unordered list item | ||
64 | * Unordered list item | ||
65 | * Unordered list item | ||
66 | |||
67 | Or using "-" + Space: | ||
68 | |||
69 | - Unordered list item | ||
70 | - Unordered list item | ||
71 | - Unordered list item | ||
72 | |||
73 | #### Hard Linebreak | ||
74 | |||
75 | End a line with two or more spaces will create a hard linebreak, called `<br />` in HTML. ( Control + Return ) | ||
76 | Above line ended with 2 spaces. | ||
77 | |||
78 | #### Horizontal Rules | ||
79 | |||
80 | Three or more asterisks or dashes: | ||
81 | |||
82 | *** | ||
83 | |||
84 | --- | ||
85 | |||
86 | - - - - | ||
87 | |||
88 | #### Headers | ||
89 | |||
90 | Setext-style: | ||
91 | |||
92 | This is H1 | ||
93 | ========== | ||
94 | |||
95 | This is H2 | ||
96 | ---------- | ||
97 | |||
98 | atx-style: | ||
99 | |||
100 | # This is H1 | ||
101 | ## This is H2 | ||
102 | ### This is H3 | ||
103 | #### This is H4 | ||
104 | ##### This is H5 | ||
105 | ###### This is H6 | ||
106 | |||
107 | |||
108 | ### Extra Syntax | ||
109 | |||
110 | #### Strikethrough | ||
111 | |||
112 | Wrap with 2 tilde characters: | ||
113 | |||
114 | ~~Strikethrough~~ | ||
115 | |||
116 | |||
117 | #### Fenced Code Blocks | ||
118 | |||
119 | Start with a line containing 3 or more backticks, and ends with the first line with the same number of backticks: | ||
120 | |||
121 | ``` | ||
122 | Fenced code blocks are like Stardard Markdown’s regular code | ||
123 | blocks, except that they’re not indented and instead rely on | ||
124 | a start and end fence lines to delimit the code block. | ||
125 | ``` | ||
126 | |||
127 | #### Tables | ||
128 | |||
129 | A simple table looks like this: | ||
130 | |||
131 | First Header | Second Header | Third Header | ||
132 | ------------ | ------------- | ------------ | ||
133 | Content Cell | Content Cell | Content Cell | ||
134 | Content Cell | Content Cell | Content Cell | ||
135 | |||
136 | If you wish, you can add a leading and tailing pipe to each line of the table: | ||
137 | |||
138 | | First Header | Second Header | Third Header | | ||
139 | | ------------ | ------------- | ------------ | | ||
140 | | Content Cell | Content Cell | Content Cell | | ||
141 | | Content Cell | Content Cell | Content Cell | | ||
142 | |||
143 | Specify alignement for each column by adding colons to separator lines: | ||
144 | |||
145 | First Header | Second Header | Third Header | ||
146 | :----------- | :-----------: | -----------: | ||
147 | Left | Center | Right | ||
148 | Left | Center | Right | ||
149 | |||
150 | |||
151 | ### Shortcuts | ||
152 | |||
153 | #### View | ||
154 | |||
155 | * Toggle live preview: Shift + Cmd + I | ||
156 | * Left/Right = 1/1: Cmd + 0 | ||
157 | * Left/Right = 3/1: Cmd + + | ||
158 | * Left/Right = 1/3: Cmd + - | ||
159 | * Toggle Writing orientation: Cmd + L | ||
160 | * Toggle fullscreen: Control + Cmd + F | ||
161 | |||
162 | #### Actions | ||
163 | |||
164 | * Copy HTML: Option + Cmd + C | ||
165 | * Strong: Select text, Cmd + B | ||
166 | * Emphasize: Select text, Cmd + I | ||
167 | * Inline Code: Select text, Cmd + K | ||
168 | * Strikethrough: Select text, Cmd + U | ||
169 | * List: Select lines, Control + L | ||
170 | * Link: Select text, Control + Shift + L | ||
171 | * Image: Select text, Control + Shift + I | ||
172 | * Uppercase: Select text, Control + U | ||
173 | * Lowercase: Select text, Control + Shift + U | ||
174 | * Titlecase: Select text, Control + Option + U | ||
175 | * Spaces to Tabs: Control + [ | ||
176 | * Tabs to Spaces: Control + ] | ||
177 | * Select Word: Control + Option + W | ||
178 | * Select Line: Shift + Cmd + L | ||
179 | * Select All: Cmd + A | ||
180 | * Deselect All: Cmd + D | ||
181 | * Insert entity <: Control + Shift + , | ||
182 | * Insert entity >: Control + Shift + . | ||
183 | * Insert entity &: Control + Shift + 7 | ||
184 | * Insert entity Space: Control + Shift + Space | ||
185 | * Shift Line Left: Select lines, Cmd + [ | ||
186 | * Shift Line Right: Select lines, Cmd + ] | ||
187 | * New Line: Cmd + Return | ||
188 | * Comment: Cmd + / | ||
189 | * Hard Linebreak: Control + Return | ||
190 | |||
191 | #### Edit | ||
192 | |||
193 | * Auto complete current word: Esc | ||
194 | * Find: Cmd + F | ||
195 | * Close find bar: Esc | ||
196 | |||
197 | #### Export | ||
198 | |||
199 | * Export HTML: Option + Cmd + E | ||
200 | * Export PDF: Option + Cmd + P | ||
201 | |||
202 | |||
203 | ### And more? | ||
204 | |||
205 | Don't forget to check Preferences, lots of useful options are there. You can Disable/enable **Show Live Preview** in new documents, Disable/enable **Auto pair**, **Make links clickable in Editor view**, change **Base Font**, choose another **Theme** or create your own! | ||
206 | |||
207 | Follow [@chenluois](http://twitter.com/chenluois) on Twitter for the latest news. | ||
208 | |||
209 | For feedback, use the menu `Help` - `Send Feedback`# CasperJS [![Build Status](https://secure.travis-ci.org/n1k0/casperjs.png)](http://travis-ci.org/n1k0/casperjs) | ||
210 | 2 | ||
211 | CasperJS is a navigation scripting & testing utility for [PhantomJS](http://www.phantomjs.org/). | 3 | CasperJS is a navigation scripting & testing utility for [PhantomJS](http://www.phantomjs.org/). |
212 | It eases the process of defining a full navigation scenario and provides useful | 4 | It eases the process of defining a full navigation scenario and provides useful | ... | ... |
-
Please register or sign in to post a comment