https://www.bilibili.com/video/BV1vb411m7NY
In the first two sections of the video, you can learn how to start a Vuepress project locally, and you can also learn other related configurations.
docs/.vuepress/public/images stores the promotional and marketing images needed to display the website itself.
It is not recommended to store the source files for the drawings in the article. Please use Alibaba Cloud oos object storage directly to store the pictures or use CSDN's blog image bed for free.
Create a new concurrency directory in the md directory, create a new 00-Java concurrent programming.md file, and put the article content in it
{
text : '并发编程' ,
items : [
{ text : '00-Java并发编程' , link : '/md/concurrency/00-Java并发编程.md' } ,
]
} ,
like
"/md/concurrency/" : [
{
title : "并发编程" ,
collapsable : false ,
sidebarDepth : 0 ,
children : [
"00-Java并发编程.md"
]
}
] ,
Note that this step should not contain special characters such as (), [], or spaces! ! ! The title of the article can have spaces, otherwise it will not be possible to break the sentence normally!
If the article can be viewed normally on the front end of the browser, the code can be submitted.
It is recommended to download Github Desktop and submit article-related data visually. Note that this repository is divided into two branches: master and main. Only operate articles on the main branch and do not touch the master branch!
Article names should not contain special characters such as brackets and #
Article content should not contain angle brackets, # and other special characters, such as
- Java API中,用户需要使用Dataset<Row>表示DataFrame
Will cause the entire article not to be displayed!
For this, you need to wrap it in a code block, such as: Dataset<Row>
so that it can be displayed normally.
Do not use html tags to render article content, as this will also result in a blank page!