Markdown-CV 项目使用教程
markdown-cva simple template to write your CV in a readable markdown file and use CSS to publish/print it.项目地址:https://gitcode.com/gh_mirrors/ma/markdown-cv
项目的目录结构及介绍
Markdown-CV 项目的目录结构如下:
markdown-cv/
├── _layouts/
│ └── default.html
├── media/
│ └── style.css
├── .gitignore
├── LICENSE
├── README.md
├── _config.yml
└── index.md
各文件和目录的介绍如下:
_layouts/
: 包含 HTML 布局文件,如default.html
。media/
: 包含 CSS 样式文件,如style.css
。.gitignore
: Git 忽略文件列表。LICENSE
: 项目许可证文件。README.md
: 项目说明文档。_config.yml
: 项目配置文件。index.md
: 项目主文件,包含个人简历内容。
项目的启动文件介绍
项目的启动文件是 index.md
。这个文件包含了个人简历的所有内容,使用 Markdown 格式编写。用户可以通过编辑这个文件来添加或修改自己的个人信息、技能、工作经历和教育背景等。
项目的配置文件介绍
项目的配置文件是 _config.yml
。这个文件包含了项目的全局配置信息,如网站标题、描述、作者等。用户可以通过编辑这个文件来调整项目的整体设置。
以下是 _config.yml
文件的一个示例内容:
title: "Markdown CV"
description: "A simple template to write your CV in a readable markdown file and use CSS to publish/print it."
author: "Your Name"
用户可以根据自己的需求修改这些配置项,以适应自己的简历内容和风格。
markdown-cva simple template to write your CV in a readable markdown file and use CSS to publish/print it.项目地址:https://gitcode.com/gh_mirrors/ma/markdown-cv