mirror of https://github.com/eyhc1/rendercv.git
create markdown templates
This commit is contained in:
parent
c881cd6b13
commit
a3ba415eb5
|
@ -0,0 +1,9 @@
|
||||||
|
<<header>>
|
||||||
|
|
||||||
|
((* for section_beginning, entries in sections*))
|
||||||
|
<<section_beginning>>
|
||||||
|
|
||||||
|
((* for entry in entries *))
|
||||||
|
<<entry>>
|
||||||
|
((* endfor *))
|
||||||
|
((* endfor *))
|
|
@ -0,0 +1,7 @@
|
||||||
|
## <<entry.institution>>, <<entry.degree>> in <<entry.area>>
|
||||||
|
|
||||||
|
((* if entry.date_string *))- <<entry.date_string>> ((* endif *))
|
||||||
|
((* if entry.location *))- <<entry.location>> ((* endif *))
|
||||||
|
((* for item in entry.highlights *))
|
||||||
|
- <<item>>
|
||||||
|
((* endfor *))
|
|
@ -0,0 +1,9 @@
|
||||||
|
## <<entry.company>>, <<entry.position>>
|
||||||
|
|
||||||
|
((* if entry.date_string *))- <<entry.date_string>> ((* endif *))
|
||||||
|
|
||||||
|
((* if entry.location *))- <<entry.location>> ((* endif *))
|
||||||
|
|
||||||
|
((* for item in entry.highlights *))
|
||||||
|
- <<item>>
|
||||||
|
((* endfor *))
|
|
@ -0,0 +1,19 @@
|
||||||
|
# <<cv.name>>'s CV
|
||||||
|
|
||||||
|
((* if cv.phone *))
|
||||||
|
- Phone: <<cv.phone|replace("tel:", "")|replace("-"," ")>>
|
||||||
|
((* endif *))
|
||||||
|
((* if cv.email *))
|
||||||
|
- Email: [<<cv.email>>](mailto:<<cv.email>>)
|
||||||
|
((* endif *))
|
||||||
|
((* if cv.location *))
|
||||||
|
- Location: <<cv.location>>
|
||||||
|
((* endif *))
|
||||||
|
((* if cv.website *))
|
||||||
|
- Website: [<<cv.website|replace("https://","")|replace("/","")>>](<<cv.website>>)
|
||||||
|
((* endif *))
|
||||||
|
((* if cv.social_networks *))
|
||||||
|
((* for network in cv.social_networks *))
|
||||||
|
- <<network.network>>: [<<network.username>>](<<network.url>>)
|
||||||
|
((* endfor *))
|
||||||
|
((* endif *))
|
|
@ -0,0 +1,7 @@
|
||||||
|
## <<entry.name>>
|
||||||
|
|
||||||
|
((* if entry.date_string *))- <<entry.date_string>> ((* endif *))
|
||||||
|
((* if entry.location *))- <<entry.location>> ((* endif *))
|
||||||
|
((* for item in entry.highlights *))
|
||||||
|
- <<item>>
|
||||||
|
((* endfor *))
|
|
@ -0,0 +1 @@
|
||||||
|
- <<entry.name>>: <<entry.details>>
|
|
@ -0,0 +1,5 @@
|
||||||
|
## <<entry.title>> ([<<entry.doi>>](<<entry.doi_url>>))
|
||||||
|
|
||||||
|
- <<entry.date_string>>
|
||||||
|
- <<entry.authors|map("abbreviate_name")|join(", ")>>
|
||||||
|
((* if entry.journal *))- <<entry.journal>> ((* endif *))
|
|
@ -0,0 +1 @@
|
||||||
|
# <<section_title>>
|
|
@ -0,0 +1 @@
|
||||||
|
<<entry>>
|
Loading…
Reference in New Issue