refactor: Remove unused rendercv_settings properties

This commit removes the unused properties in the `rendercv_settings` section of the `John_Doe_ClassicTheme_CV.yaml`, `John_Doe_EngineeringresumesTheme_CV.yaml`, `John_Doe_ModerncvTheme_CV.yaml`, and `John_Doe_Sb2novTheme_CV.yaml` files. The properties `output_folder_name`, `no_html`, `no_markdown`, and `no_png` are no longer needed and have been removed. This cleanup improves the clarity and maintainability of the code.
This commit is contained in:
Akibur Rahman
2024-09-03 10:59:45 +00:00
parent 22d81248c7
commit 1b178567fc
9 changed files with 24 additions and 33 deletions

View File

Binary file not shown.

View File

@@ -141,7 +141,3 @@ design:
bottom: 0.3 cm
horizontal_between_connections: 0.5 cm
show_timespan_in: []
rendercv_settings:
render:

View File

Binary file not shown.

View File

@@ -139,8 +139,3 @@ design:
vertical_between_name_and_connections: 5 pt
bottom: 5 pt
horizontal_between_connections: 10 pt
rendercv_settings:
output_folder_name: rendercv_output
no_html: false
no_markdown: false
no_png: false

View File

Binary file not shown.

View File

@@ -112,8 +112,3 @@ design:
content_scale: 0.75
show_only_years: false
disable_page_numbers: false
rendercv_settings:
output_folder_name: rendercv_output
no_html: false
no_markdown: false
no_png: false

View File

Binary file not shown.

View File

@@ -139,8 +139,3 @@ design:
vertical_between_name_and_connections: 0.3 cm
bottom: 0.3 cm
horizontal_between_connections: 0.5 cm
rendercv_settings:
output_folder_name: rendercv_output
no_html: false
no_markdown: false
no_png: false

View File

@@ -1690,6 +1690,24 @@
"RenderCVSettings": {
"additionalProperties": false,
"description": "This class is the data model of the rendercv settings. The values of each field\nupdates the `rendercv_settings` dictionary.",
"properties": {
"render": {
"default": null,
"description": "The options to render the output files.",
"title": "Render Options",
"oneOf": [
{
"$ref": "#/$defs/RenderOptions"
}
]
}
},
"title": "RenderCVSettings",
"type": "object"
},
"RenderOptions": {
"additionalProperties": false,
"description": "This class is the data model of the render options. The values of each field\nupdates the `rendercv_settings.render` dictionary.",
"properties": {
"output_folder_name": {
"default": "rendercv_output",
@@ -1792,7 +1810,7 @@
]
}
},
"title": "RenderCVSettings",
"title": "RenderOptions",
"type": "object"
},
"Sb2novThemeOptions": {
@@ -2112,23 +2130,15 @@
"title": "Locale Catalog"
},
"rendercv_settings": {
"allOf": [
"anyOf": [
{
"$ref": "#/$defs/RenderCVSettings"
},
{
"type": "null"
}
],
"default": {
"output_folder_name": "rendercv_output",
"use_local_latex_command": null,
"pdf_path": null,
"latex_path": null,
"html_path": null,
"png_path": null,
"markdown_path": null,
"no_html": false,
"no_markdown": false,
"no_png": false
},
"default": null,
"description": "The settings of the RenderCV.",
"title": "RenderCV Settings"
}