docs: add BulletEntry to user guide

This commit is contained in:
Sina Atalay 2024-03-10 19:11:06 +01:00
parent e2a3a48ca2
commit 0822003628
9 changed files with 14 additions and 8 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 73 KiB

View File

@ -105,6 +105,10 @@ one_line_entry = {
"details": "Python, C++, JavaScript, MATLAB", "details": "Python, C++, JavaScript, MATLAB",
} }
bullet_entry = {
"bullet": "This is a bullet entry.",
}
text_entry = ( text_entry = (
"This is a *TextEntry*. It is only a text and can be useful for sections like" "This is a *TextEntry*. It is only a text and can be useful for sections like"
" **Summary**. To showcase the TextEntry completely, this sentence is added, but it" " **Summary**. To showcase the TextEntry completely, this sentence is added, but it"
@ -137,6 +141,7 @@ def define_env(env):
"normal_entry", "normal_entry",
"publication_entry", "publication_entry",
"one_line_entry", "one_line_entry",
"bullet_entry",
"text_entry", "text_entry",
] ]
@ -162,12 +167,13 @@ def generate_entry_figures():
"""Generate an image for each entry type and theme.""" """Generate an image for each entry type and theme."""
# Generate PDF figures for each entry type and theme # Generate PDF figures for each entry type and theme
entries = { entries = {
"education_entry": dm.EducationEntry(**education_entry), # "education_entry": dm.EducationEntry(**education_entry),
"experience_entry": dm.ExperienceEntry(**experience_entry), # "experience_entry": dm.ExperienceEntry(**experience_entry),
"normal_entry": dm.NormalEntry(**normal_entry), # "normal_entry": dm.NormalEntry(**normal_entry),
"publication_entry": dm.PublicationEntry(**publication_entry), # "publication_entry": dm.PublicationEntry(**publication_entry),
"one_line_entry": dm.OneLineEntry(**one_line_entry), # "one_line_entry": dm.OneLineEntry(**one_line_entry),
"text_entry": f"{text_entry}", # "text_entry": f"{text_entry}",
"bullet_entry": dm.BulletEntry(**bullet_entry),
} }
themes = dm.available_themes themes = dm.available_themes
@ -295,5 +301,5 @@ def generate_schema():
if __name__ == "__main__": if __name__ == "__main__":
generate_entry_figures() generate_entry_figures()
generate_examples() # generate_examples()
generate_schema() # generate_schema()