当前位置:网站首页>Markdown syntax for document editing (typera)

Markdown syntax for document editing (typera)

2022-07-06 18:20:00 xiayuexingkong

1 Insert code block ( With Java For example )

Input method input in English ```Java

class CountDownActivity : AppCompatActivity() {
    val countDownModel by viewModels<CountDownModel>()
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_count_down)
        val tvContent = findViewById<TextView>(R.id.tv_content)
        countDownModel.countDownLiveData.observe(this) {
            tvContent.text = it
        }
    }
}

2 Title Grammar

#  First level title 
##  Secondary title 
###  Three level title 
####  The fourth level title 
#####  Five level titles 
######  Six level title 

3 Font format syntax

//  In bold 
** Please call me song god **
// The highlighted 
== All the flowers I'm waiting for are thanks ==
// Delete line 
~~ Legend of hungry wolf ~~
// Italics 
* Kiss good-bye *

Please call me song god

== All the flowers I'm waiting for are thanks == Legend of hungry wolf Kiss good-bye

4 Quote grammar

> Luo Guanzhong 
>> Cao xueqin 
>>> Shi Naian 

Luo Guanzhong

Cao xueqin

Shi Naian

5 Split line

// Split line 1
---
// Split line 2
***


6 Insert a picture

![ Image name ]( Picture path )

7 Hyperlinks

[ Description of hyperlink ](https://github.com/aSmartTortoise12)

8 list

// Unordered list 
-  Super Mario 
-  Contra 
-  Tanks war 
// Ordered list 
1  Robotech: The Macross Saga 
2  The king of Fighters 
3  Ice peak 
  • Super Mario

  • Contra

  • Tanks war

1 Robotech: The Macross Saga 2 The king of Fighters 3 Ice peak

9 form

full name class fraction
Lau Andy 1 class -20
Aaron Kwok 2 class 80
Jacky Cheung 9527 class 100

reference :

【 Use the tutorial 】15 Minutes to get started Markdown course , Absolutely excellent , Legendary note taking artifact , Blogging , Programmers must have , Simple , Easy to use , beautiful _ Bili, Bili _bilibili

原网站

版权声明
本文为[xiayuexingkong]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/187/202207061021537124.html