리뷰/어플,모바일,인터넷

아주편한 블로그 글쓰기 어플과 문법,마크다운(markdown)

cultpd 2013. 9. 5. 18:28

마크다운(markdown)형식으로 글쓰는 것 참 재밌고

깔끔하고 좋다.


원래 이메일 문장구조를 응용한 것인데 HTML보다 간단하여 

빠르고 간편하게 글을 작성할 수 있다.




요런 [괄호]를 넣으면 구분이되고


강조는 별표를 붙이면 되고 이택릭도 되고

 *강조*, _강조_, **더 강조**, __더 강조__


샵을 붙이면

# 첫 번째 단계 문단 제목

## 두 번째 단계 문단 제목

### 3 번째 단계 문단 제목


=를 이용해서도 가능


첫 번째 단계 문단 제목

====================


두 번째 단계 문단 제목

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





문단과 문단 사이는 빈 줄


글에 하이퍼링크를 다는 법은

[사이트](http://www.example.com), [사이트](http://www.example.com "사이트 제목")




순서가 있는 리스트도 자동으로



1. 첫 번째

2. 두 번째

3. 세 번째



- 첫 번째

- 두 번째

- 세 번째




이걸 마크다운 문서편집기에서 HTML로 바꾸어 붙여넣기하면






————-요런 괄호를 넣으면 색깔이 들어가고

강조는 별표를 붙이면 되고

강조, 강조, 더 강조, 더 강조

샵을 붙이면

첫 번째 단계 문단 제목

두 번째 단계 문단 제목

3 번째 단계 문단 제목

=를 이용해서도 가능

첫 번째 단계 문단 제목

====================

두 번째 단계 문단 제목


문단과 문단 사이는 빈 줄

글에 하이퍼링크를 다는 법은

사이트, 사이트

순서가 있는 리스트도 자동으로

  1. 첫 번째

  2. 두 번째

  3. 세 번째

  4. 첫 번째

  5. 두 번째

  6. 세 번째








>제일 궁금했던 인용 등에서 앞에 세로줄 넣는 법

>요거 계속 넣으면 됨

>계속



요거 계속 넣으면 됨

계속

계속 앞에다 삽입



http://daringfireball.net/projects/markdown/syntax





아래 주소가면 MOU 프로그램 다운로드 받을 수 있고 무료, 설명도 잘 되어 있음.

MAC용 http://mouapp.com/


BYWORD 역시 맥용 (유료)

http://metaclassy.com/


윈도우용

http://markdownpad.com/


아이폰, 아이패드 어플은 MARKDOWN으로 검색하면 무료가 몇개 나옴.




============================

다양한 명령어 

# Mou


![Mou icon](http://mouapp.com/Mou_128.png)


## Overview


**Mou**, the missing Markdown editor for *web developers*.


### Syntax


#### Strong and Emphasize 


**strong** or __strong__ ( Cmd + B )


*emphasize* or _emphasize_ ( Cmd + I )


**Sometimes I want a lot of text to be bold.

Like, seriously, a _LOT_ of text**


#### Blockquotes


> Right angle brackets > are used for block quotes.


#### Links and Email


An email <example@example.com> link.


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").


A [reference style][id] link. Input id, then anywhere in the doc, define the link with corresponding id:


[id]: http://mouapp.com "Markdown editor on Mac OS X"


Titles ( or called tool tips ) in the links are optional.


#### Images


An inline image ![Smaller icon](http://smallerapp.com/favicon.ico "Title here"), title is optional.


A ![Resize icon][2] reference style image.


[2]: http://resizesafari.com/favicon.ico "Title"


#### Inline code and Block code


Inline code are surround by `backtick` key. To create a block code:


Indent each line by at least 1 tab, or 4 spaces.

    var Mou = exactlyTheAppIwant; 


####  Ordered Lists


Ordered lists are created using "1." + Space:


1. Ordered list item

2. Ordered list item

3. Ordered list item


#### Unordered Lists


Unordered list are created using "*" + Space:


* Unordered list item

* Unordered list item

* Unordered list item 


Or using "-" + Space:


- Unordered list item

- Unordered list item

- Unordered list item


#### Hard Linebreak


End a line with two or more spaces will create a hard linebreak, called `<br />` in HTML. ( Control + Return )  

Above line ended with 2 spaces.


#### Horizontal Rules


Three or more asterisks or dashes:


***


---


- - - -


#### Headers


Setext-style:


This is H1

==========


This is H2

----------


atx-style:


# This is H1

## This is H2

### This is H3

#### This is H4

##### This is H5

###### This is H6



### Extra Syntax


#### Footnotes


Footnotes 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:


That's some text with a footnote.[^1]


[^1]: And that's the footnote.



#### Strikethrough


Wrap with 2 tilde characters:


~~Strikethrough~~



#### Fenced Code Blocks


Start with a line containing 3 or more backticks, and ends with the first line with the same number of backticks:


```

Fenced code blocks are like Stardard Markdown’s regular code

blocks, except that they’re not indented and instead rely on

a start and end fence lines to delimit the code block.

```


#### Tables


A simple table looks like this:


First Header | Second Header | Third Header

------------ | ------------- | ------------

Content Cell | Content Cell  | Content Cell

Content Cell | Content Cell  | Content Cell


If you wish, you can add a leading and tailing pipe to each line of the table:


| First Header | Second Header | Third Header |

| ------------ | ------------- | ------------ |

| Content Cell | Content Cell  | Content Cell |

| Content Cell | Content Cell  | Content Cell |


Specify alignement for each column by adding colons to separator lines:


First Header | Second Header | Third Header

:----------- | :-----------: | -----------:

Left         | Center        | Right

Left         | Center        | Right



### Shortcuts


#### View


* Toggle live preview: Shift + Cmd + I

* Toggle Words Counter: Shift + Cmd + W

* Toggle Transparent: Shift + Cmd + T

* Toggle Floating: Shift + Cmd + F

* Left/Right = 1/1: Cmd + 0

* Left/Right = 3/1: Cmd + +

* Left/Right = 1/3: Cmd + -

* Toggle Writing orientation: Cmd + L

* Toggle fullscreen: Control + Cmd + F


#### Actions


* Copy HTML: Option + Cmd + C

* Strong: Select text, Cmd + B

* Emphasize: Select text, Cmd + I

* Inline Code: Select text, Cmd + K

* Strikethrough: Select text, Cmd + U

* Link: Select text, Control + Shift + L

* Image: Select text, Control + Shift + I

* Select Word: Control + Option + W

* Select Line: Shift + Cmd + L

* Select All: Cmd + A

* Deselect All: Cmd + D

* Convert to Uppercase: Select text, Control + U

* Convert to Lowercase: Select text, Control + Shift + U

* Convert to Titlecase: Select text, Control + Option + U

* Convert to List: Select lines, Control + L

* Convert to Blockquote: Select lines, Control + Q

* Convert to H1: Cmd + 1

* Convert to H2: Cmd + 2

* Convert to H3: Cmd + 3

* Convert to H4: Cmd + 4

* Convert to H5: Cmd + 5

* Convert to H6: Cmd + 6

* Convert Spaces to Tabs: Control + [

* Convert Tabs to Spaces: Control + ]

* Insert Current Date: Control + Shift + 1

* Insert Current Time: Control + Shift + 2

* Insert entity <: Control + Shift + ,

* Insert entity >: Control + Shift + .

* Insert entity &: Control + Shift + 7

* Insert entity Space: Control + Shift + Space

* Insert Scriptogr.am Header: Control + Shift + G

* Shift Line Left: Select lines, Cmd + [

* Shift Line Right: Select lines, Cmd + ]

* New Line: Cmd + Return

* Comment: Cmd + /

* Hard Linebreak: Control + Return


#### Edit


* Auto complete current word: Esc

* Find: Cmd + F

* Close find bar: Esc


#### Post


* Post on Scriptogr.am: Control + Shift + S

* Post on Tumblr: Control + Shift + T


#### Export


* Export HTML: Option + Cmd + E

* Export PDF:  Option + Cmd + P