const features = [ { title: <>Easy to Use</>, imageUrl: 'img/undraw_docusaurus_mountain.svg', description: ( <> Docusaurus was designed from the ground up to be easily installed and used to get your website up and running quickly. </> ), }, { title: <>Focus on What Matters</>, imageUrl: 'img/undraw_docusaurus_tree.svg', description: ( <> Docusaurus lets you focus on your docs, and we'll do the chores. Go ahead and move your docs into the <code>docs</code> directory. </> ), }, { title: <>Powered by React</>, imageUrl: 'img/undraw_docusaurus_react.svg', description: ( <> Extend or customize your website layout by reusing React. Docusaurus can be extended while reusing the same header and footer. </> ), }, ];
要更改元素结构或属性可以在 index.js 中的 Feature 函数中更改。
撰写博客
博客的 Markdown 文件存放在项目目录下的 blog 目录中。
博客的 Markdown 文件开头也需要填写文章信息,如下:
1 2 3 4 5 6 7 8 9
--- id: vscode title: VSCode 远程开发配置 author: Mr. Ma author_title: 程序员 author_url: https://github.com/wgao19 author_image_url: https://www.misterma.com/img/avatar.jpg tags: [VScode, 远程开发] ---