-
-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ff5f38b
commit 23fd145
Showing
11 changed files
with
177 additions
and
120 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,5 @@ | ||
# Welcome to MkDocs | ||
# Welcome to RenderCV | ||
|
||
For full documentation visit [mkdocs.org](https://www.mkdocs.org). | ||
It's a simple tool to render your CV from a YAML file. | ||
|
||
## Commands | ||
|
||
* `mkdocs new [dir-name]` - Create a new project. | ||
* `mkdocs serve` - Start the live-reloading docs server. | ||
* `mkdocs build` - Build the documentation site. | ||
* `mkdocs -h` - Print help message and exit. | ||
|
||
## Project layout | ||
|
||
mkdocs.yml # The configuration file. | ||
docs/ | ||
index.md # The documentation homepage. | ||
... # Other markdown pages, images and other files. | ||
It's a work in progress, please come back later. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# __main__ module | ||
# Main | ||
::: rendercv.__main__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# data_model module | ||
# Data Model | ||
|
||
::: rendercv.data_model |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# tinytex module | ||
# TinyTeX | ||
::: rendercv.tinytex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,51 @@ | ||
site_name: My Docs | ||
site_name: RenderCV | ||
site_description: A Python application that creates a CV in PDF from a YAML/JSON input file. | ||
site_url: https://sinaatalay.github.io/rendercv/ | ||
repo_name: sinaatalay/rendercv | ||
repo_url: https://github.com/sinaatalay/rendercv | ||
edit_uri: edit/main/docs/ | ||
|
||
theme: | ||
name: material | ||
palette: | ||
- media: "(prefers-color-scheme: light)" | ||
scheme: default | ||
primary: indigo | ||
accent: indigo | ||
toggle: | ||
icon: material/lightbulb-outline | ||
name: "Switch to dark mode" | ||
- media: "(prefers-color-scheme: dark)" | ||
scheme: slate | ||
primary: indigo | ||
accent: indigo | ||
toggle: | ||
icon: material/lightbulb | ||
name: "Switch to light mode" | ||
features: | ||
- content.tabs.link | ||
- content.code.annotate | ||
- content.code.copy | ||
|
||
nav: | ||
- Home: index.md | ||
- About: about.md | ||
- Quick Start: index.md | ||
- Contact: contact.md | ||
- License: license.md | ||
- Code Reference: | ||
- __main__.py: code/main.md | ||
- data_model.py: code/data_model.md | ||
- tinytex.py: code/tinytex.md | ||
- __main__.py: reference/__main__.md | ||
- data_model.py: reference/data_model.md | ||
- tinytex.py: reference/tinytex.md | ||
|
||
plugins: | ||
- search | ||
- mkdocstrings: | ||
handlers: | ||
python: | ||
paths: | ||
- rendercv | ||
options: | ||
show_root_heading: true | ||
members_order: source | ||
show_bases: true | ||
show_root_members_full_path: true | ||
group_by_category: true | ||
show_category_heading: true | ||
show_symbol_type_heading: true | ||
show_symbol_type_toc: true | ||
docstring_section_style: list | ||
merge_init_into_class: true | ||
docstring_style: sphinx | ||
show_docstring_attributes: true | ||
docstring_style: google |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"""RenderCV package | ||
A Python application that creates a CV in PDF from a YAML/JSON input file. | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters