From 99f97d12b2704f37209a5b15f22956bce6b29fa4 Mon Sep 17 00:00:00 2001 From: Sina Atalay Date: Sun, 2 Feb 2025 18:02:45 -0500 Subject: [PATCH] Add a new field: `design.entries.allow_page_break_in_sections` --- docs/user_guide/structure_of_the_yaml_input_file.md | 1 + examples/John_Doe_ClassicTheme_CV.yaml | 1 + examples/John_Doe_EngineeringclassicTheme_CV.yaml | 1 + examples/John_Doe_EngineeringresumesTheme_CV.yaml | 1 + examples/John_Doe_ModerncvTheme_CV.yaml | 1 + examples/John_Doe_Sb2novTheme_CV.yaml | 1 + rendercv/themes/classic/SectionBeginning.j2.typ | 5 ++++- rendercv/themes/classic/SectionEnding.j2.typ | 10 ++++++++++ .../themes/engineeringclassic/SectionBeginning.j2.typ | 5 ++++- .../themes/engineeringclassic/SectionEnding.j2.typ | 10 ++++++++++ .../themes/engineeringresumes/SectionBeginning.j2.typ | 5 ++++- .../themes/engineeringresumes/SectionEnding.j2.typ | 10 ++++++++++ rendercv/themes/moderncv/SectionBeginning.j2.typ | 5 ++++- rendercv/themes/moderncv/SectionEnding.j2.typ | 10 ++++++++++ rendercv/themes/options.py | 8 ++++++++ rendercv/themes/sb2nov/SectionBeginning.j2.typ | 5 ++++- rendercv/themes/sb2nov/SectionEnding.j2.typ | 10 ++++++++++ .../test_create_a_typst_file/classic_empty.typ | 1 - .../test_create_a_typst_file/classic_filled.typ | 10 ---------- .../engineeringclassic_empty.typ | 1 - .../engineeringclassic_filled.typ | 10 ---------- .../engineeringresumes_empty.typ | 1 - .../engineeringresumes_filled.typ | 10 ---------- .../test_create_a_typst_file/moderncv_empty.typ | 1 - .../test_create_a_typst_file/moderncv_filled.typ | 10 ---------- .../testdata/test_create_a_typst_file/sb2nov_empty.typ | 1 - .../test_create_a_typst_file/sb2nov_filled.typ | 10 ---------- .../classic_empty_long_second_row/None_CV.typ | 1 - .../classic_empty_short_second_row/None_CV.typ | 1 - .../classic_filled_long_second_row/John_Doe_CV.typ | 10 ---------- .../classic_filled_short_second_row/John_Doe_CV.typ | 10 ---------- .../None_CV.typ | 1 - .../None_CV.typ | 1 - .../John_Doe_CV.typ | 10 ---------- .../John_Doe_CV.typ | 10 ---------- .../None_CV.typ | 1 - .../None_CV.typ | 1 - .../John_Doe_CV.typ | 10 ---------- .../John_Doe_CV.typ | 10 ---------- .../moderncv_empty_long_second_row/None_CV.typ | 1 - .../moderncv_empty_short_second_row/None_CV.typ | 1 - .../moderncv_filled_long_second_row/John_Doe_CV.typ | 10 ---------- .../moderncv_filled_short_second_row/John_Doe_CV.typ | 10 ---------- .../sb2nov_empty_long_second_row/None_CV.typ | 1 - .../sb2nov_empty_short_second_row/None_CV.typ | 1 - .../sb2nov_filled_long_second_row/John_Doe_CV.typ | 10 ---------- .../sb2nov_filled_short_second_row/John_Doe_CV.typ | 10 ---------- 47 files changed, 84 insertions(+), 170 deletions(-) diff --git a/docs/user_guide/structure_of_the_yaml_input_file.md b/docs/user_guide/structure_of_the_yaml_input_file.md index b77acf4a..770f3f32 100644 --- a/docs/user_guide/structure_of_the_yaml_input_file.md +++ b/docs/user_guide/structure_of_the_yaml_input_file.md @@ -337,6 +337,7 @@ entries: left_and_right_margin: 0.2cm horizontal_space_between_columns: 0.1cm vertical_space_between_entries: 1.2em + allow_page_break_in_sections: true allow_page_break_in_entries: true short_second_row: false show_time_spans_in: [] diff --git a/examples/John_Doe_ClassicTheme_CV.yaml b/examples/John_Doe_ClassicTheme_CV.yaml index 932b31d8..65678848 100644 --- a/examples/John_Doe_ClassicTheme_CV.yaml +++ b/examples/John_Doe_ClassicTheme_CV.yaml @@ -143,6 +143,7 @@ design: left_and_right_margin: 0.2cm horizontal_space_between_columns: 0.1cm vertical_space_between_entries: 1.2em + allow_page_break_in_sections: true allow_page_break_in_entries: true short_second_row: false show_time_spans_in: [] diff --git a/examples/John_Doe_EngineeringclassicTheme_CV.yaml b/examples/John_Doe_EngineeringclassicTheme_CV.yaml index 6cc0de99..fb13e841 100644 --- a/examples/John_Doe_EngineeringclassicTheme_CV.yaml +++ b/examples/John_Doe_EngineeringclassicTheme_CV.yaml @@ -143,6 +143,7 @@ design: left_and_right_margin: 0.2cm horizontal_space_between_columns: 0.1cm vertical_space_between_entries: 1.2em + allow_page_break_in_sections: true allow_page_break_in_entries: true short_second_row: false show_time_spans_in: [] diff --git a/examples/John_Doe_EngineeringresumesTheme_CV.yaml b/examples/John_Doe_EngineeringresumesTheme_CV.yaml index 516bfe83..5f653ddb 100644 --- a/examples/John_Doe_EngineeringresumesTheme_CV.yaml +++ b/examples/John_Doe_EngineeringresumesTheme_CV.yaml @@ -144,6 +144,7 @@ design: left_and_right_margin: 0cm horizontal_space_between_columns: 0.1cm vertical_space_between_entries: 0.4cm + allow_page_break_in_sections: true allow_page_break_in_entries: true short_second_row: false show_time_spans_in: [] diff --git a/examples/John_Doe_ModerncvTheme_CV.yaml b/examples/John_Doe_ModerncvTheme_CV.yaml index fe04f942..7d51db8f 100644 --- a/examples/John_Doe_ModerncvTheme_CV.yaml +++ b/examples/John_Doe_ModerncvTheme_CV.yaml @@ -143,6 +143,7 @@ design: left_and_right_margin: 0cm horizontal_space_between_columns: 0.4cm vertical_space_between_entries: 0.4cm + allow_page_break_in_sections: false allow_page_break_in_entries: true short_second_row: false show_time_spans_in: [] diff --git a/examples/John_Doe_Sb2novTheme_CV.yaml b/examples/John_Doe_Sb2novTheme_CV.yaml index fe543410..a334b37b 100644 --- a/examples/John_Doe_Sb2novTheme_CV.yaml +++ b/examples/John_Doe_Sb2novTheme_CV.yaml @@ -144,6 +144,7 @@ design: left_and_right_margin: 0.2cm horizontal_space_between_columns: 0.1cm vertical_space_between_entries: 1.2em + allow_page_break_in_sections: true allow_page_break_in_entries: true short_second_row: false show_time_spans_in: [] diff --git a/rendercv/themes/classic/SectionBeginning.j2.typ b/rendercv/themes/classic/SectionBeginning.j2.typ index bcec959c..2029508e 100644 --- a/rendercv/themes/classic/SectionBeginning.j2.typ +++ b/rendercv/themes/classic/SectionBeginning.j2.typ @@ -1,5 +1,8 @@ == <> - +((* if not design.entries.allow_page_break_in_sections *)) +#block( + [ +((* endif *)) ((* if entry_type in ["NumberedEntry", "ReversedNumberedEntry"] *)) #one-col-entry( content: [ diff --git a/rendercv/themes/classic/SectionEnding.j2.typ b/rendercv/themes/classic/SectionEnding.j2.typ index 469c966e..8dd8a3ce 100644 --- a/rendercv/themes/classic/SectionEnding.j2.typ +++ b/rendercv/themes/classic/SectionEnding.j2.typ @@ -9,3 +9,13 @@ ], ) ((* endif *)) +((* if not design.entries.allow_page_break_in_sections *)) + ], + breakable: false, + inset: ( + left: 0cm, + right: 0cm, + ), + width: 100%, +) +((* endif *)) \ No newline at end of file diff --git a/rendercv/themes/engineeringclassic/SectionBeginning.j2.typ b/rendercv/themes/engineeringclassic/SectionBeginning.j2.typ index bcec959c..2029508e 100644 --- a/rendercv/themes/engineeringclassic/SectionBeginning.j2.typ +++ b/rendercv/themes/engineeringclassic/SectionBeginning.j2.typ @@ -1,5 +1,8 @@ == <> - +((* if not design.entries.allow_page_break_in_sections *)) +#block( + [ +((* endif *)) ((* if entry_type in ["NumberedEntry", "ReversedNumberedEntry"] *)) #one-col-entry( content: [ diff --git a/rendercv/themes/engineeringclassic/SectionEnding.j2.typ b/rendercv/themes/engineeringclassic/SectionEnding.j2.typ index 469c966e..8dd8a3ce 100644 --- a/rendercv/themes/engineeringclassic/SectionEnding.j2.typ +++ b/rendercv/themes/engineeringclassic/SectionEnding.j2.typ @@ -9,3 +9,13 @@ ], ) ((* endif *)) +((* if not design.entries.allow_page_break_in_sections *)) + ], + breakable: false, + inset: ( + left: 0cm, + right: 0cm, + ), + width: 100%, +) +((* endif *)) \ No newline at end of file diff --git a/rendercv/themes/engineeringresumes/SectionBeginning.j2.typ b/rendercv/themes/engineeringresumes/SectionBeginning.j2.typ index bcec959c..2029508e 100644 --- a/rendercv/themes/engineeringresumes/SectionBeginning.j2.typ +++ b/rendercv/themes/engineeringresumes/SectionBeginning.j2.typ @@ -1,5 +1,8 @@ == <> - +((* if not design.entries.allow_page_break_in_sections *)) +#block( + [ +((* endif *)) ((* if entry_type in ["NumberedEntry", "ReversedNumberedEntry"] *)) #one-col-entry( content: [ diff --git a/rendercv/themes/engineeringresumes/SectionEnding.j2.typ b/rendercv/themes/engineeringresumes/SectionEnding.j2.typ index 469c966e..8dd8a3ce 100644 --- a/rendercv/themes/engineeringresumes/SectionEnding.j2.typ +++ b/rendercv/themes/engineeringresumes/SectionEnding.j2.typ @@ -9,3 +9,13 @@ ], ) ((* endif *)) +((* if not design.entries.allow_page_break_in_sections *)) + ], + breakable: false, + inset: ( + left: 0cm, + right: 0cm, + ), + width: 100%, +) +((* endif *)) \ No newline at end of file diff --git a/rendercv/themes/moderncv/SectionBeginning.j2.typ b/rendercv/themes/moderncv/SectionBeginning.j2.typ index bcec959c..2029508e 100644 --- a/rendercv/themes/moderncv/SectionBeginning.j2.typ +++ b/rendercv/themes/moderncv/SectionBeginning.j2.typ @@ -1,5 +1,8 @@ == <> - +((* if not design.entries.allow_page_break_in_sections *)) +#block( + [ +((* endif *)) ((* if entry_type in ["NumberedEntry", "ReversedNumberedEntry"] *)) #one-col-entry( content: [ diff --git a/rendercv/themes/moderncv/SectionEnding.j2.typ b/rendercv/themes/moderncv/SectionEnding.j2.typ index 469c966e..8dd8a3ce 100644 --- a/rendercv/themes/moderncv/SectionEnding.j2.typ +++ b/rendercv/themes/moderncv/SectionEnding.j2.typ @@ -9,3 +9,13 @@ ], ) ((* endif *)) +((* if not design.entries.allow_page_break_in_sections *)) + ], + breakable: false, + inset: ( + left: 0cm, + right: 0cm, + ), + width: 100%, +) +((* endif *)) \ No newline at end of file diff --git a/rendercv/themes/options.py b/rendercv/themes/options.py index 03b172ab..2586837c 100644 --- a/rendercv/themes/options.py +++ b/rendercv/themes/options.py @@ -394,6 +394,13 @@ entries_vertical_space_between_entries_field_info = pydantic.Field( title="Vertical Space Between Entries", description="The vertical space between the entries.", ) +entries_allow_page_break_in_sections_field_info = pydantic.Field( + default=True, + title="Allow Page Break in Sections", + description=( + 'If this option is "true", a page break will be allowed in the sections.' + ), +) entries_allow_page_break_in_entries_field_info = pydantic.Field( default=True, title="Allow Page Break in Entries", @@ -427,6 +434,7 @@ class Entries(RenderCVBaseModelWithoutExtraKeys): vertical_space_between_entries: TypstDimension = ( entries_vertical_space_between_entries_field_info ) + allow_page_break_in_sections: bool = entries_allow_page_break_in_sections_field_info allow_page_break_in_entries: bool = entries_allow_page_break_in_entries_field_info short_second_row: bool = entries_short_second_row_field_info show_time_spans_in: list[str] = entries_show_time_spans_in_field_info diff --git a/rendercv/themes/sb2nov/SectionBeginning.j2.typ b/rendercv/themes/sb2nov/SectionBeginning.j2.typ index bcec959c..2029508e 100644 --- a/rendercv/themes/sb2nov/SectionBeginning.j2.typ +++ b/rendercv/themes/sb2nov/SectionBeginning.j2.typ @@ -1,5 +1,8 @@ == <> - +((* if not design.entries.allow_page_break_in_sections *)) +#block( + [ +((* endif *)) ((* if entry_type in ["NumberedEntry", "ReversedNumberedEntry"] *)) #one-col-entry( content: [ diff --git a/rendercv/themes/sb2nov/SectionEnding.j2.typ b/rendercv/themes/sb2nov/SectionEnding.j2.typ index 469c966e..8dd8a3ce 100644 --- a/rendercv/themes/sb2nov/SectionEnding.j2.typ +++ b/rendercv/themes/sb2nov/SectionEnding.j2.typ @@ -9,3 +9,13 @@ ], ) ((* endif *)) +((* if not design.entries.allow_page_break_in_sections *)) + ], + breakable: false, + inset: ( + left: 0cm, + right: 0cm, + ), + width: 100%, +) +((* endif *)) \ No newline at end of file diff --git a/tests/testdata/test_create_a_typst_file/classic_empty.typ b/tests/testdata/test_create_a_typst_file/classic_empty.typ index 9afa3759..b94b2ddb 100644 --- a/tests/testdata/test_create_a_typst_file/classic_empty.typ +++ b/tests/testdata/test_create_a_typst_file/classic_empty.typ @@ -458,7 +458,6 @@ == Test - #one-col-entry( content: [test] ) diff --git a/tests/testdata/test_create_a_typst_file/classic_filled.typ b/tests/testdata/test_create_a_typst_file/classic_filled.typ index e59f122b..ed780b08 100644 --- a/tests/testdata/test_create_a_typst_file/classic_filled.typ +++ b/tests/testdata/test_create_a_typst_file/classic_filled.typ @@ -487,7 +487,6 @@ == Text Entries - #one-col-entry( content: [This is a #emph[TextEntry]. It is only a text and can be useful for sections like #strong[Summary]. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.] ) @@ -504,7 +503,6 @@ == Bullet Entries - #one-col-entry( content: [- This is a bullet entry.], ) @@ -517,7 +515,6 @@ == Publication Entries - #one-col-entry(content:[ #strong[Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils] @@ -711,7 +708,6 @@ - #one-col-entry( content: [ #strong[Some Company], Software Engineer @@ -1683,7 +1679,6 @@ Sept 2021 == Education Entries - // NO DATE, YES DEGREE #two-col-entry( left-column-width: 1cm, @@ -4231,7 +4226,6 @@ Sept 2021 - #one-col-entry( content: [ #strong[My Project] @@ -5203,14 +5197,12 @@ Sept 2021 == One Line Entries - #one-col-entry( content: [#strong[Pro#strong[gram]ming:] Python, C++, JavaScript, MATLAB] ) == Numbered Entries - #one-col-entry( content: [ @@ -5221,7 +5213,6 @@ Sept 2021 ) == Reversed Numbered Entries - #one-col-entry( content: [ #let rev-enum-items = ( @@ -5241,7 +5232,6 @@ Sept 2021 - #one-col-entry( content: [ #strong[A Section & with \% Special Characters] diff --git a/tests/testdata/test_create_a_typst_file/engineeringclassic_empty.typ b/tests/testdata/test_create_a_typst_file/engineeringclassic_empty.typ index 2f37456e..baa7bda0 100644 --- a/tests/testdata/test_create_a_typst_file/engineeringclassic_empty.typ +++ b/tests/testdata/test_create_a_typst_file/engineeringclassic_empty.typ @@ -458,7 +458,6 @@ == Test - #one-col-entry( content: [test] ) diff --git a/tests/testdata/test_create_a_typst_file/engineeringclassic_filled.typ b/tests/testdata/test_create_a_typst_file/engineeringclassic_filled.typ index 64353cd8..6cf263a5 100644 --- a/tests/testdata/test_create_a_typst_file/engineeringclassic_filled.typ +++ b/tests/testdata/test_create_a_typst_file/engineeringclassic_filled.typ @@ -487,7 +487,6 @@ == Text Entries - #one-col-entry( content: [This is a #emph[TextEntry]. It is only a text and can be useful for sections like #strong[Summary]. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.] ) @@ -504,7 +503,6 @@ == Bullet Entries - #one-col-entry( content: [- This is a bullet entry.], ) @@ -517,7 +515,6 @@ == Publication Entries - #one-col-entry(content:[ #strong[Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils] @@ -711,7 +708,6 @@ - #one-col-entry( content: [ #strong[Software Engineer], Some Company @@ -1673,7 +1669,6 @@ == Education Entries - // NO DATE, YES DEGREE #two-col-entry( left-column-width: 1cm, @@ -4383,7 +4378,6 @@ - #one-col-entry( content: [ #strong[My Project] @@ -5345,14 +5339,12 @@ == One Line Entries - #one-col-entry( content: [#strong[Pro#strong[gram]ming:] Python, C++, JavaScript, MATLAB] ) == Numbered Entries - #one-col-entry( content: [ @@ -5363,7 +5355,6 @@ ) == Reversed Numbered Entries - #one-col-entry( content: [ #let rev-enum-items = ( @@ -5383,7 +5374,6 @@ - #one-col-entry( content: [ #strong[A Section & with \% Special Characters] diff --git a/tests/testdata/test_create_a_typst_file/engineeringresumes_empty.typ b/tests/testdata/test_create_a_typst_file/engineeringresumes_empty.typ index c085c27c..6e45c46c 100644 --- a/tests/testdata/test_create_a_typst_file/engineeringresumes_empty.typ +++ b/tests/testdata/test_create_a_typst_file/engineeringresumes_empty.typ @@ -458,7 +458,6 @@ == Test - #one-col-entry( content: [test] ) diff --git a/tests/testdata/test_create_a_typst_file/engineeringresumes_filled.typ b/tests/testdata/test_create_a_typst_file/engineeringresumes_filled.typ index 26cad773..3bafb164 100644 --- a/tests/testdata/test_create_a_typst_file/engineeringresumes_filled.typ +++ b/tests/testdata/test_create_a_typst_file/engineeringresumes_filled.typ @@ -487,7 +487,6 @@ == Text Entries - #one-col-entry( content: [This is a #emph[TextEntry]. It is only a text and can be useful for sections like #strong[Summary]. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.] ) @@ -504,7 +503,6 @@ == Bullet Entries - #one-col-entry( content: [- This is a bullet entry.], ) @@ -517,7 +515,6 @@ == Publication Entries - #one-col-entry(content:[ #strong[Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils] @@ -711,7 +708,6 @@ - #one-col-entry( content: [ #strong[Software Engineer], Some Company @@ -1673,7 +1669,6 @@ == Education Entries - // NO DATE, NO DEGREE #one-col-entry( @@ -4283,7 +4278,6 @@ - #one-col-entry( content: [ #strong[My Project] @@ -5245,14 +5239,12 @@ == One Line Entries - #one-col-entry( content: [#strong[Pro#strong[gram]ming:] Python, C++, JavaScript, MATLAB] ) == Numbered Entries - #one-col-entry( content: [ @@ -5263,7 +5255,6 @@ ) == Reversed Numbered Entries - #one-col-entry( content: [ #let rev-enum-items = ( @@ -5283,7 +5274,6 @@ - #one-col-entry( content: [ #strong[A Section & with \% Special Characters] diff --git a/tests/testdata/test_create_a_typst_file/moderncv_empty.typ b/tests/testdata/test_create_a_typst_file/moderncv_empty.typ index 5442d72a..fa66a722 100644 --- a/tests/testdata/test_create_a_typst_file/moderncv_empty.typ +++ b/tests/testdata/test_create_a_typst_file/moderncv_empty.typ @@ -458,7 +458,6 @@ == Test - #one-col-entry( content: [test] ) diff --git a/tests/testdata/test_create_a_typst_file/moderncv_filled.typ b/tests/testdata/test_create_a_typst_file/moderncv_filled.typ index 1256dbfc..d17e0161 100644 --- a/tests/testdata/test_create_a_typst_file/moderncv_filled.typ +++ b/tests/testdata/test_create_a_typst_file/moderncv_filled.typ @@ -487,7 +487,6 @@ == Text Entries - #one-col-entry( content: [This is a #emph[TextEntry]. It is only a text and can be useful for sections like #strong[Summary]. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.] ) @@ -504,7 +503,6 @@ == Bullet Entries - #one-col-entry( content: [- This is a bullet entry.], ) @@ -517,7 +515,6 @@ == Publication Entries - #one-col-entry(content:[ #strong[Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils] @@ -703,7 +700,6 @@ - #one-col-entry( content: [ #strong[Software Engineer], Some Company @@ -1539,7 +1535,6 @@ == Education Entries - // NO DATE, NO DEGREE #one-col-entry( @@ -3337,7 +3332,6 @@ - #one-col-entry( content: [ #strong[My Project] @@ -4173,14 +4167,12 @@ == One Line Entries - #one-col-entry( content: [#strong[Pro#strong[gram]ming:] Python, C++, JavaScript, MATLAB] ) == Numbered Entries - #one-col-entry( content: [ @@ -4191,7 +4183,6 @@ ) == Reversed Numbered Entries - #one-col-entry( content: [ #let rev-enum-items = ( @@ -4211,7 +4202,6 @@ - #one-col-entry( content: [ #strong[A Section & with \% Special Characters] diff --git a/tests/testdata/test_create_a_typst_file/sb2nov_empty.typ b/tests/testdata/test_create_a_typst_file/sb2nov_empty.typ index 874cf12a..3237e3af 100644 --- a/tests/testdata/test_create_a_typst_file/sb2nov_empty.typ +++ b/tests/testdata/test_create_a_typst_file/sb2nov_empty.typ @@ -458,7 +458,6 @@ == Test - #one-col-entry( content: [test] ) diff --git a/tests/testdata/test_create_a_typst_file/sb2nov_filled.typ b/tests/testdata/test_create_a_typst_file/sb2nov_filled.typ index 10482c58..0d0c6349 100644 --- a/tests/testdata/test_create_a_typst_file/sb2nov_filled.typ +++ b/tests/testdata/test_create_a_typst_file/sb2nov_filled.typ @@ -487,7 +487,6 @@ == Text Entries - #one-col-entry( content: [This is a #emph[TextEntry]. It is only a text and can be useful for sections like #strong[Summary]. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.] ) @@ -504,7 +503,6 @@ == Bullet Entries - #one-col-entry( content: [- This is a bullet entry.], ) @@ -517,7 +515,6 @@ == Publication Entries - #one-col-entry(content:[ #strong[Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils] @@ -711,7 +708,6 @@ - #one-col-entry( content: [ #strong[Software Engineer] @@ -1874,7 +1870,6 @@ == Education Entries - // NO DATE, NO DEGREE #one-col-entry( @@ -4926,7 +4921,6 @@ - #one-col-entry( content: [ #strong[My Project] @@ -5898,14 +5892,12 @@ == One Line Entries - #one-col-entry( content: [#strong[Pro#strong[gram]ming:] Python, C++, JavaScript, MATLAB] ) == Numbered Entries - #one-col-entry( content: [ @@ -5916,7 +5908,6 @@ ) == Reversed Numbered Entries - #one-col-entry( content: [ #let rev-enum-items = ( @@ -5936,7 +5927,6 @@ - #one-col-entry( content: [ #strong[A Section & with \% Special Characters] diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_empty_long_second_row/None_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_empty_long_second_row/None_CV.typ index 9afa3759..b94b2ddb 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_empty_long_second_row/None_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_empty_long_second_row/None_CV.typ @@ -458,7 +458,6 @@ == Test - #one-col-entry( content: [test] ) diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_empty_short_second_row/None_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_empty_short_second_row/None_CV.typ index 9afa3759..b94b2ddb 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_empty_short_second_row/None_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_empty_short_second_row/None_CV.typ @@ -458,7 +458,6 @@ == Test - #one-col-entry( content: [test] ) diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_filled_long_second_row/John_Doe_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_filled_long_second_row/John_Doe_CV.typ index e59f122b..ed780b08 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_filled_long_second_row/John_Doe_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_filled_long_second_row/John_Doe_CV.typ @@ -487,7 +487,6 @@ == Text Entries - #one-col-entry( content: [This is a #emph[TextEntry]. It is only a text and can be useful for sections like #strong[Summary]. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.] ) @@ -504,7 +503,6 @@ == Bullet Entries - #one-col-entry( content: [- This is a bullet entry.], ) @@ -517,7 +515,6 @@ == Publication Entries - #one-col-entry(content:[ #strong[Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils] @@ -711,7 +708,6 @@ - #one-col-entry( content: [ #strong[Some Company], Software Engineer @@ -1683,7 +1679,6 @@ Sept 2021 == Education Entries - // NO DATE, YES DEGREE #two-col-entry( left-column-width: 1cm, @@ -4231,7 +4226,6 @@ Sept 2021 - #one-col-entry( content: [ #strong[My Project] @@ -5203,14 +5197,12 @@ Sept 2021 == One Line Entries - #one-col-entry( content: [#strong[Pro#strong[gram]ming:] Python, C++, JavaScript, MATLAB] ) == Numbered Entries - #one-col-entry( content: [ @@ -5221,7 +5213,6 @@ Sept 2021 ) == Reversed Numbered Entries - #one-col-entry( content: [ #let rev-enum-items = ( @@ -5241,7 +5232,6 @@ Sept 2021 - #one-col-entry( content: [ #strong[A Section & with \% Special Characters] diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_filled_short_second_row/John_Doe_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_filled_short_second_row/John_Doe_CV.typ index 1f9c6287..b6d8d5b8 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_filled_short_second_row/John_Doe_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/classic_filled_short_second_row/John_Doe_CV.typ @@ -487,7 +487,6 @@ == Text Entries - #one-col-entry( content: [This is a #emph[TextEntry]. It is only a text and can be useful for sections like #strong[Summary]. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.] ) @@ -504,7 +503,6 @@ == Bullet Entries - #one-col-entry( content: [- This is a bullet entry.], ) @@ -517,7 +515,6 @@ == Publication Entries - #one-col-entry(content:[ #strong[Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils] @@ -703,7 +700,6 @@ - #one-col-entry( content: [ #strong[Some Company], Software Engineer @@ -1603,7 +1599,6 @@ Sept 2021 == Education Entries - // NO DATE, YES DEGREE #two-col-entry( left-column-width: 1cm, @@ -3809,7 +3804,6 @@ Sept 2021 - #one-col-entry( content: [ #strong[My Project] @@ -4709,14 +4703,12 @@ Sept 2021 == One Line Entries - #one-col-entry( content: [#strong[Pro#strong[gram]ming:] Python, C++, JavaScript, MATLAB] ) == Numbered Entries - #one-col-entry( content: [ @@ -4727,7 +4719,6 @@ Sept 2021 ) == Reversed Numbered Entries - #one-col-entry( content: [ #let rev-enum-items = ( @@ -4747,7 +4738,6 @@ Sept 2021 - #one-col-entry( content: [ #strong[A Section & with \% Special Characters] diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_empty_long_second_row/None_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_empty_long_second_row/None_CV.typ index 2f37456e..baa7bda0 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_empty_long_second_row/None_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_empty_long_second_row/None_CV.typ @@ -458,7 +458,6 @@ == Test - #one-col-entry( content: [test] ) diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_empty_short_second_row/None_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_empty_short_second_row/None_CV.typ index 2f37456e..baa7bda0 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_empty_short_second_row/None_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_empty_short_second_row/None_CV.typ @@ -458,7 +458,6 @@ == Test - #one-col-entry( content: [test] ) diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_filled_long_second_row/John_Doe_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_filled_long_second_row/John_Doe_CV.typ index 64353cd8..6cf263a5 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_filled_long_second_row/John_Doe_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_filled_long_second_row/John_Doe_CV.typ @@ -487,7 +487,6 @@ == Text Entries - #one-col-entry( content: [This is a #emph[TextEntry]. It is only a text and can be useful for sections like #strong[Summary]. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.] ) @@ -504,7 +503,6 @@ == Bullet Entries - #one-col-entry( content: [- This is a bullet entry.], ) @@ -517,7 +515,6 @@ == Publication Entries - #one-col-entry(content:[ #strong[Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils] @@ -711,7 +708,6 @@ - #one-col-entry( content: [ #strong[Software Engineer], Some Company @@ -1673,7 +1669,6 @@ == Education Entries - // NO DATE, YES DEGREE #two-col-entry( left-column-width: 1cm, @@ -4383,7 +4378,6 @@ - #one-col-entry( content: [ #strong[My Project] @@ -5345,14 +5339,12 @@ == One Line Entries - #one-col-entry( content: [#strong[Pro#strong[gram]ming:] Python, C++, JavaScript, MATLAB] ) == Numbered Entries - #one-col-entry( content: [ @@ -5363,7 +5355,6 @@ ) == Reversed Numbered Entries - #one-col-entry( content: [ #let rev-enum-items = ( @@ -5383,7 +5374,6 @@ - #one-col-entry( content: [ #strong[A Section & with \% Special Characters] diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_filled_short_second_row/John_Doe_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_filled_short_second_row/John_Doe_CV.typ index 69e93fea..c4b39cf9 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_filled_short_second_row/John_Doe_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringclassic_filled_short_second_row/John_Doe_CV.typ @@ -487,7 +487,6 @@ == Text Entries - #one-col-entry( content: [This is a #emph[TextEntry]. It is only a text and can be useful for sections like #strong[Summary]. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.] ) @@ -504,7 +503,6 @@ == Bullet Entries - #one-col-entry( content: [- This is a bullet entry.], ) @@ -517,7 +515,6 @@ == Publication Entries - #one-col-entry(content:[ #strong[Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils] @@ -703,7 +700,6 @@ - #one-col-entry( content: [ #strong[Software Engineer], Some Company @@ -1539,7 +1535,6 @@ == Education Entries - // NO DATE, YES DEGREE #two-col-entry( left-column-width: 1cm, @@ -3641,7 +3636,6 @@ - #one-col-entry( content: [ #strong[My Project] @@ -4477,14 +4471,12 @@ == One Line Entries - #one-col-entry( content: [#strong[Pro#strong[gram]ming:] Python, C++, JavaScript, MATLAB] ) == Numbered Entries - #one-col-entry( content: [ @@ -4495,7 +4487,6 @@ ) == Reversed Numbered Entries - #one-col-entry( content: [ #let rev-enum-items = ( @@ -4515,7 +4506,6 @@ - #one-col-entry( content: [ #strong[A Section & with \% Special Characters] diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_empty_long_second_row/None_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_empty_long_second_row/None_CV.typ index c085c27c..6e45c46c 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_empty_long_second_row/None_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_empty_long_second_row/None_CV.typ @@ -458,7 +458,6 @@ == Test - #one-col-entry( content: [test] ) diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_empty_short_second_row/None_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_empty_short_second_row/None_CV.typ index c085c27c..6e45c46c 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_empty_short_second_row/None_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_empty_short_second_row/None_CV.typ @@ -458,7 +458,6 @@ == Test - #one-col-entry( content: [test] ) diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_filled_long_second_row/John_Doe_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_filled_long_second_row/John_Doe_CV.typ index 26cad773..3bafb164 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_filled_long_second_row/John_Doe_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_filled_long_second_row/John_Doe_CV.typ @@ -487,7 +487,6 @@ == Text Entries - #one-col-entry( content: [This is a #emph[TextEntry]. It is only a text and can be useful for sections like #strong[Summary]. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.] ) @@ -504,7 +503,6 @@ == Bullet Entries - #one-col-entry( content: [- This is a bullet entry.], ) @@ -517,7 +515,6 @@ == Publication Entries - #one-col-entry(content:[ #strong[Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils] @@ -711,7 +708,6 @@ - #one-col-entry( content: [ #strong[Software Engineer], Some Company @@ -1673,7 +1669,6 @@ == Education Entries - // NO DATE, NO DEGREE #one-col-entry( @@ -4283,7 +4278,6 @@ - #one-col-entry( content: [ #strong[My Project] @@ -5245,14 +5239,12 @@ == One Line Entries - #one-col-entry( content: [#strong[Pro#strong[gram]ming:] Python, C++, JavaScript, MATLAB] ) == Numbered Entries - #one-col-entry( content: [ @@ -5263,7 +5255,6 @@ ) == Reversed Numbered Entries - #one-col-entry( content: [ #let rev-enum-items = ( @@ -5283,7 +5274,6 @@ - #one-col-entry( content: [ #strong[A Section & with \% Special Characters] diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_filled_short_second_row/John_Doe_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_filled_short_second_row/John_Doe_CV.typ index 20723b94..52429457 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_filled_short_second_row/John_Doe_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/engineeringresumes_filled_short_second_row/John_Doe_CV.typ @@ -487,7 +487,6 @@ == Text Entries - #one-col-entry( content: [This is a #emph[TextEntry]. It is only a text and can be useful for sections like #strong[Summary]. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.] ) @@ -504,7 +503,6 @@ == Bullet Entries - #one-col-entry( content: [- This is a bullet entry.], ) @@ -517,7 +515,6 @@ == Publication Entries - #one-col-entry(content:[ #strong[Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils] @@ -703,7 +700,6 @@ - #one-col-entry( content: [ #strong[Software Engineer], Some Company @@ -1539,7 +1535,6 @@ == Education Entries - // NO DATE, NO DEGREE #one-col-entry( @@ -3337,7 +3332,6 @@ - #one-col-entry( content: [ #strong[My Project] @@ -4173,14 +4167,12 @@ == One Line Entries - #one-col-entry( content: [#strong[Pro#strong[gram]ming:] Python, C++, JavaScript, MATLAB] ) == Numbered Entries - #one-col-entry( content: [ @@ -4191,7 +4183,6 @@ ) == Reversed Numbered Entries - #one-col-entry( content: [ #let rev-enum-items = ( @@ -4211,7 +4202,6 @@ - #one-col-entry( content: [ #strong[A Section & with \% Special Characters] diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_empty_long_second_row/None_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_empty_long_second_row/None_CV.typ index 5442d72a..fa66a722 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_empty_long_second_row/None_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_empty_long_second_row/None_CV.typ @@ -458,7 +458,6 @@ == Test - #one-col-entry( content: [test] ) diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_empty_short_second_row/None_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_empty_short_second_row/None_CV.typ index 5442d72a..fa66a722 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_empty_short_second_row/None_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_empty_short_second_row/None_CV.typ @@ -458,7 +458,6 @@ == Test - #one-col-entry( content: [test] ) diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_filled_long_second_row/John_Doe_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_filled_long_second_row/John_Doe_CV.typ index 1256dbfc..d17e0161 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_filled_long_second_row/John_Doe_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_filled_long_second_row/John_Doe_CV.typ @@ -487,7 +487,6 @@ == Text Entries - #one-col-entry( content: [This is a #emph[TextEntry]. It is only a text and can be useful for sections like #strong[Summary]. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.] ) @@ -504,7 +503,6 @@ == Bullet Entries - #one-col-entry( content: [- This is a bullet entry.], ) @@ -517,7 +515,6 @@ == Publication Entries - #one-col-entry(content:[ #strong[Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils] @@ -703,7 +700,6 @@ - #one-col-entry( content: [ #strong[Software Engineer], Some Company @@ -1539,7 +1535,6 @@ == Education Entries - // NO DATE, NO DEGREE #one-col-entry( @@ -3337,7 +3332,6 @@ - #one-col-entry( content: [ #strong[My Project] @@ -4173,14 +4167,12 @@ == One Line Entries - #one-col-entry( content: [#strong[Pro#strong[gram]ming:] Python, C++, JavaScript, MATLAB] ) == Numbered Entries - #one-col-entry( content: [ @@ -4191,7 +4183,6 @@ ) == Reversed Numbered Entries - #one-col-entry( content: [ #let rev-enum-items = ( @@ -4211,7 +4202,6 @@ - #one-col-entry( content: [ #strong[A Section & with \% Special Characters] diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_filled_short_second_row/John_Doe_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_filled_short_second_row/John_Doe_CV.typ index 1256dbfc..d17e0161 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_filled_short_second_row/John_Doe_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/moderncv_filled_short_second_row/John_Doe_CV.typ @@ -487,7 +487,6 @@ == Text Entries - #one-col-entry( content: [This is a #emph[TextEntry]. It is only a text and can be useful for sections like #strong[Summary]. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.] ) @@ -504,7 +503,6 @@ == Bullet Entries - #one-col-entry( content: [- This is a bullet entry.], ) @@ -517,7 +515,6 @@ == Publication Entries - #one-col-entry(content:[ #strong[Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils] @@ -703,7 +700,6 @@ - #one-col-entry( content: [ #strong[Software Engineer], Some Company @@ -1539,7 +1535,6 @@ == Education Entries - // NO DATE, NO DEGREE #one-col-entry( @@ -3337,7 +3332,6 @@ - #one-col-entry( content: [ #strong[My Project] @@ -4173,14 +4167,12 @@ == One Line Entries - #one-col-entry( content: [#strong[Pro#strong[gram]ming:] Python, C++, JavaScript, MATLAB] ) == Numbered Entries - #one-col-entry( content: [ @@ -4191,7 +4183,6 @@ ) == Reversed Numbered Entries - #one-col-entry( content: [ #let rev-enum-items = ( @@ -4211,7 +4202,6 @@ - #one-col-entry( content: [ #strong[A Section & with \% Special Characters] diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_empty_long_second_row/None_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_empty_long_second_row/None_CV.typ index 874cf12a..3237e3af 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_empty_long_second_row/None_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_empty_long_second_row/None_CV.typ @@ -458,7 +458,6 @@ == Test - #one-col-entry( content: [test] ) diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_empty_short_second_row/None_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_empty_short_second_row/None_CV.typ index 874cf12a..3237e3af 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_empty_short_second_row/None_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_empty_short_second_row/None_CV.typ @@ -458,7 +458,6 @@ == Test - #one-col-entry( content: [test] ) diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_filled_long_second_row/John_Doe_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_filled_long_second_row/John_Doe_CV.typ index 10482c58..0d0c6349 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_filled_long_second_row/John_Doe_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_filled_long_second_row/John_Doe_CV.typ @@ -487,7 +487,6 @@ == Text Entries - #one-col-entry( content: [This is a #emph[TextEntry]. It is only a text and can be useful for sections like #strong[Summary]. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.] ) @@ -504,7 +503,6 @@ == Bullet Entries - #one-col-entry( content: [- This is a bullet entry.], ) @@ -517,7 +515,6 @@ == Publication Entries - #one-col-entry(content:[ #strong[Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils] @@ -711,7 +708,6 @@ - #one-col-entry( content: [ #strong[Software Engineer] @@ -1874,7 +1870,6 @@ == Education Entries - // NO DATE, NO DEGREE #one-col-entry( @@ -4926,7 +4921,6 @@ - #one-col-entry( content: [ #strong[My Project] @@ -5898,14 +5892,12 @@ == One Line Entries - #one-col-entry( content: [#strong[Pro#strong[gram]ming:] Python, C++, JavaScript, MATLAB] ) == Numbered Entries - #one-col-entry( content: [ @@ -5916,7 +5908,6 @@ ) == Reversed Numbered Entries - #one-col-entry( content: [ #let rev-enum-items = ( @@ -5936,7 +5927,6 @@ - #one-col-entry( content: [ #strong[A Section & with \% Special Characters] diff --git a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_filled_short_second_row/John_Doe_CV.typ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_filled_short_second_row/John_Doe_CV.typ index f4de13ac..26e99fbb 100644 --- a/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_filled_short_second_row/John_Doe_CV.typ +++ b/tests/testdata/test_create_a_typst_file_and_copy_theme_files/sb2nov_filled_short_second_row/John_Doe_CV.typ @@ -487,7 +487,6 @@ == Text Entries - #one-col-entry( content: [This is a #emph[TextEntry]. It is only a text and can be useful for sections like #strong[Summary]. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.] ) @@ -504,7 +503,6 @@ == Bullet Entries - #one-col-entry( content: [- This is a bullet entry.], ) @@ -517,7 +515,6 @@ == Publication Entries - #one-col-entry(content:[ #strong[Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils] @@ -703,7 +700,6 @@ - #one-col-entry( content: [ #strong[Software Engineer] @@ -1731,7 +1727,6 @@ == Education Entries - // NO DATE, NO DEGREE #one-col-entry( @@ -3913,7 +3908,6 @@ - #one-col-entry( content: [ #strong[My Project] @@ -4813,14 +4807,12 @@ == One Line Entries - #one-col-entry( content: [#strong[Pro#strong[gram]ming:] Python, C++, JavaScript, MATLAB] ) == Numbered Entries - #one-col-entry( content: [ @@ -4831,7 +4823,6 @@ ) == Reversed Numbered Entries - #one-col-entry( content: [ #let rev-enum-items = ( @@ -4851,7 +4842,6 @@ - #one-col-entry( content: [ #strong[A Section & with \% Special Characters]