mirror of https://github.com/eyhc1/rendercv.git
Fixed issues with new lines in markdown (in case if date_string or location isn't provided)
This commit is contained in:
parent
a6e45e72f7
commit
9ed8237e6d
|
@ -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 *))
|
||||
|
|
|
@ -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 *))
|
||||
|
|
|
@ -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 *))
|
||||
|
|
Loading…
Reference in New Issue