-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparams.json
More file actions
1 lines (1 loc) · 7.21 KB
/
params.json
File metadata and controls
1 lines (1 loc) · 7.21 KB
1
{"name":"saiyagg.GitHub.io","tagline":"","body":"# Mou\r\n\r\n\r\n\r\n## Overview\r\n\r\n**Mou**, the missing Markdown editor for *web developers*.\r\n\r\n### Syntax\r\n\r\n#### Strong and Emphasize \r\n\r\n**strong** or __strong__ ( Cmd + B )\r\n\r\n*emphasize* or _emphasize_ ( Cmd + I )\r\n\r\n**Sometimes I want a lot of text to be bold.\r\nLike, seriously, a _LOT_ of text**\r\n\r\n#### Blockquotes\r\n\r\n> Right angle brackets > are used for block quotes.\r\n\r\n#### Links and Email\r\n\r\nAn email <example@example.com> link.\r\n\r\nSimple 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\").\r\n\r\nA [reference style][id] link. Input id, then anywhere in the doc, define the link with corresponding id:\r\n\r\n[id]: http://mouapp.com \"Markdown editor on Mac OS X\"\r\n\r\nTitles ( or called tool tips ) in the links are optional.\r\n\r\n#### Images\r\n\r\nAn inline image , title is optional.\r\n\r\nA ![Resize icon][2] reference style image.\r\n\r\n[2]: http://resizesafari.com/favicon.ico \"Title\"\r\n\r\n#### Inline code and Block code\r\n\r\nInline code are surround by `backtick` key. To create a block code:\r\n\r\n\tIndent each line by at least 1 tab, or 4 spaces.\r\n var Mou = exactlyTheAppIwant; \r\n\r\n#### Ordered Lists\r\n\r\nOrdered lists are created using \"1.\" + Space:\r\n\r\n1. Ordered list item\r\n2. Ordered list item\r\n3. Ordered list item\r\n\r\n#### Unordered Lists\r\n\r\nUnordered list are created using \"*\" + Space:\r\n\r\n* Unordered list item\r\n* Unordered list item\r\n* Unordered list item \r\n\r\nOr using \"-\" + Space:\r\n\r\n- Unordered list item\r\n- Unordered list item\r\n- Unordered list item\r\n\r\n#### Hard Linebreak\r\n\r\nEnd a line with two or more spaces will create a hard linebreak, called `<br />` in HTML. ( Control + Return ) \r\nAbove line ended with 2 spaces.\r\n\r\n#### Horizontal Rules\r\n\r\nThree or more asterisks or dashes:\r\n\r\n***\r\n\r\n---\r\n\r\n- - - -\r\n\r\n#### Headers\r\n\r\nSetext-style:\r\n\r\nThis is H1\r\n==========\r\n\r\nThis is H2\r\n----------\r\n\r\natx-style:\r\n\r\n# This is H1\r\n## This is H2\r\n### This is H3\r\n#### This is H4\r\n##### This is H5\r\n###### This is H6\r\n\r\n\r\n### Extra Syntax\r\n\r\n#### Footnotes\r\n\r\nFootnotes work mostly like reference-style links. A footnote is made of two things: a marker in the text that will become a superscript number; a footnote definition that will be placed in a list of footnotes at the end of the document. A footnote looks like this:\r\n\r\nThat's some text with a footnote.[^1]\r\n\r\n[^1]: And that's the footnote.\r\n\r\n\r\n#### Strikethrough\r\n\r\nWrap with 2 tilde characters:\r\n\r\n~~Strikethrough~~\r\n\r\n\r\n#### Fenced Code Blocks\r\n\r\nStart with a line containing 3 or more backticks, and ends with the first line with the same number of backticks:\r\n\r\n```\r\nFenced code blocks are like Stardard Markdown’s regular code\r\nblocks, except that they’re not indented and instead rely on\r\na start and end fence lines to delimit the code block.\r\n```\r\n\r\n#### Tables\r\n\r\nA simple table looks like this:\r\n\r\nFirst Header | Second Header | Third Header\r\n------------ | ------------- | ------------\r\nContent Cell | Content Cell | Content Cell\r\nContent Cell | Content Cell | Content Cell\r\n\r\nIf you wish, you can add a leading and tailing pipe to each line of the table:\r\n\r\n| First Header | Second Header | Third Header |\r\n| ------------ | ------------- | ------------ |\r\n| Content Cell | Content Cell | Content Cell |\r\n| Content Cell | Content Cell | Content Cell |\r\n\r\nSpecify alignement for each column by adding colons to separator lines:\r\n\r\nFirst Header | Second Header | Third Header\r\n:----------- | :-----------: | -----------:\r\nLeft | Center | Right\r\nLeft | Center | Right\r\n\r\n\r\n### Shortcuts\r\n\r\n#### View\r\n\r\n* Toggle live preview: Shift + Cmd + I\r\n* Toggle Words Counter: Shift + Cmd + W\r\n* Toggle Transparent: Shift + Cmd + T\r\n* Toggle Floating: Shift + Cmd + F\r\n* Left/Right = 1/1: Cmd + 0\r\n* Left/Right = 3/1: Cmd + +\r\n* Left/Right = 1/3: Cmd + -\r\n* Toggle Writing orientation: Cmd + L\r\n* Toggle fullscreen: Control + Cmd + F\r\n\r\n#### Actions\r\n\r\n* Copy HTML: Option + Cmd + C\r\n* Strong: Select text, Cmd + B\r\n* Emphasize: Select text, Cmd + I\r\n* Inline Code: Select text, Cmd + K\r\n* Strikethrough: Select text, Cmd + U\r\n* Link: Select text, Control + Shift + L\r\n* Image: Select text, Control + Shift + I\r\n* Select Word: Control + Option + W\r\n* Select Line: Shift + Cmd + L\r\n* Select All: Cmd + A\r\n* Deselect All: Cmd + D\r\n* Convert to Uppercase: Select text, Control + U\r\n* Convert to Lowercase: Select text, Control + Shift + U\r\n* Convert to Titlecase: Select text, Control + Option + U\r\n* Convert to List: Select lines, Control + L\r\n* Convert to Blockquote: Select lines, Control + Q\r\n* Convert to H1: Cmd + 1\r\n* Convert to H2: Cmd + 2\r\n* Convert to H3: Cmd + 3\r\n* Convert to H4: Cmd + 4\r\n* Convert to H5: Cmd + 5\r\n* Convert to H6: Cmd + 6\r\n* Convert Spaces to Tabs: Control + [\r\n* Convert Tabs to Spaces: Control + ]\r\n* Insert Current Date: Control + Shift + 1\r\n* Insert Current Time: Control + Shift + 2\r\n* Insert entity <: Control + Shift + ,\r\n* Insert entity >: Control + Shift + .\r\n* Insert entity &: Control + Shift + 7\r\n* Insert entity Space: Control + Shift + Space\r\n* Insert Scriptogr.am Header: Control + Shift + G\r\n* Shift Line Left: Select lines, Cmd + [\r\n* Shift Line Right: Select lines, Cmd + ]\r\n* New Line: Cmd + Return\r\n* Comment: Cmd + /\r\n* Hard Linebreak: Control + Return\r\n\r\n#### Edit\r\n\r\n* Auto complete current word: Esc\r\n* Find: Cmd + F\r\n* Close find bar: Esc\r\n\r\n#### Post\r\n\r\n* Post on Scriptogr.am: Control + Shift + S\r\n* Post on Tumblr: Control + Shift + T\r\n\r\n#### Export\r\n\r\n* Export HTML: Option + Cmd + E\r\n* Export PDF: Option + Cmd + P\r\n\r\n\r\n### And more?\r\n\r\nDon't forget to check Preferences, lots of useful options are there.\r\n\r\nFollow [@chenluois](http://twitter.com/chenluois) on Twitter for the latest news.\r\n\r\nFor feedback, use the menu `Help` - `Send Feedback`\r\n\r\n<div>\r\n<!-- 多说评论框 start -->\r\n<div class=\"ds-thread\" data-thread-key=\"1\" data-title=\"saiyagg.github.io\" data-url=\"https://saiyagg.github.io\"></div>\r\n<!-- 多说评论框 end -->\r\n<!-- 多说公共JS代码 start (一个网页只需插入一次) -->\r\n<script type=\"text/javascript\">\r\nvar duoshuoQuery = {short_name:\"saoyagg\"};\r\n\t(function() {\r\n\t\tvar ds = document.createElement('script');\r\n\t\tds.type = 'text/javascript';ds.async = true;\r\n\t\tds.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//static.duoshuo.com/embed.js';\r\n\t\tds.charset = 'UTF-8';\r\n\t\t(document.getElementsByTagName('head')[0] \r\n\t\t || document.getElementsByTagName('body')[0]).appendChild(ds);\r\n\t})();\r\n\t</script>\r\n<!-- 多说公共JS代码 end -->\r\n</div>","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."}