Damao教你如何使用MacDown

MacDown

Macdown is a editor for the MarkDown. Before i know the Macdown, i used the 马克飞象 to edit the MarkDown, but it is $79/year. So my friend recommend the MacDown.So let us see how to use the MacDown


How to use the MacDown

Line Breaks

To face a line break, put to spaces and a newline (reture) at the end of the line.

  • This two-line bullet
    won't break

  • This two-line bullet
    will break

ps: 如果不想让它断行,直接回车就行,如果想让它断行,则需要进行俩 空格,再回车

Here is the code:

* This two-line bullet won't break  

* Tihs two-line bullet  
  will break

Strong and Emphasize

Strong is so easy , here is the code for this:

    **Strong**  *起强调作用

Emphasize is a style, it can make the fonts to tilt. Here is the code for this

        *Emphasize*

Also there are some hot key for them

    strong : cmd+b ;  
      
    emphasize : cmd+i ;

Headers ( like tis one! )

    Header 1  
    
    ========
    
    Header 2  
    
    -------




or

        # Header 1
        ## Header 2
        ### Header 3  
        until Header 6    
  • As for the Email , just put angle brackets around an Emali and it becomes clickable:
    [email protected]

  • As for the urls , if you won't add the alt or the urls' name, you just do it like the Email , but if you want to add the alts for the urls , you must to do something additional. Link that : Damao的邮箱 , here is the code :
    [Damao的邮箱]([email protected])

转载于:https://www.cnblogs.com/damaochina/p/7060385.html

你可能感兴趣的:(Damao教你如何使用MacDown)