Skip to content

Commit

Permalink
merge pull request #67 from guapman/main
Browse files Browse the repository at this point in the history
fix issues with new lines in markdown
  • Loading branch information
sinaatalay committed May 14, 2024
2 parents a6e45e7 + 563d855 commit 15dfbb7
Show file tree
Hide file tree
Showing 11 changed files with 1,684 additions and 1,966 deletions.
8 changes: 4 additions & 4 deletions rendercv/themes/markdown/EducationEntry.j2.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
## <<entry.institution>>, ((* if entry.degree *))<<entry.degree>> in ((* endif *))<<entry.area>>

((* if entry.date_string *))- <<entry.date_string>> ((* endif *))

((* if entry.location *))- <<entry.location>> ((* endif *))

((* if entry.date_string *))- <<entry.date_string>>
((* endif *))
((* if entry.location *))- <<entry.location>>
((* endif *))
((* for item in entry.highlights *))
- <<item>>
((* endfor *))
8 changes: 4 additions & 4 deletions rendercv/themes/markdown/ExperienceEntry.j2.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
## <<entry.company>>, <<entry.position>>

((* if entry.date_string *))- <<entry.date_string>> ((* endif *))

((* if entry.location *))- <<entry.location>> ((* endif *))

((* if entry.date_string *))- <<entry.date_string>>
((* endif *))
((* if entry.location *))- <<entry.location>>
((* endif *))
((* for item in entry.highlights *))
- <<item>>
((* endfor *))
6 changes: 4 additions & 2 deletions rendercv/themes/markdown/NormalEntry.j2.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
## <<entry.name>>

((* if entry.date_string *))- <<entry.date_string>> ((* endif *))
((* if entry.location *))- <<entry.location>> ((* endif *))
((* if entry.date_string *))- <<entry.date_string>>
((* endif *))
((* if entry.location *))- <<entry.location>>
((* endif *))
((* for item in entry.highlights *))
- <<item>>
((* endfor *))
428 changes: 206 additions & 222 deletions tests/testdata/test_generate_markdown_file/classic_filled.md

Large diffs are not rendered by default.

428 changes: 206 additions & 222 deletions tests/testdata/test_generate_markdown_file/engineeringresumes_filled.md

Large diffs are not rendered by default.

428 changes: 206 additions & 222 deletions tests/testdata/test_generate_markdown_file/moderncv_filled.md

Large diffs are not rendered by default.

428 changes: 206 additions & 222 deletions tests/testdata/test_generate_markdown_file/sb2nov_filled.md

Large diffs are not rendered by default.

479 changes: 212 additions & 267 deletions tests/testdata/test_markdown_to_html/classic_filled.html

Large diffs are not rendered by default.

479 changes: 212 additions & 267 deletions tests/testdata/test_markdown_to_html/engineeringresumes_filled.html

Large diffs are not rendered by default.

479 changes: 212 additions & 267 deletions tests/testdata/test_markdown_to_html/moderncv_filled.html

Large diffs are not rendered by default.

479 changes: 212 additions & 267 deletions tests/testdata/test_markdown_to_html/sb2nov_filled.html

Large diffs are not rendered by default.

0 comments on commit 15dfbb7

Please sign in to comment.