File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11title : quarto-awesomecv-typst
22author : Kazuharu Yanagimoto
3- version : 0.3.0
4- quarto-required : " >=1.7.33 "
3+ version : 0.3.1
4+ quarto-required : " >=1.8 "
55contributes :
66 formats :
77 typst :
Original file line number Diff line number Diff line change 11# show : resume . with (
22$ if (title )$
33 title : [$ title $ ],
4+ title-meta : " $title-meta$$if(title-meta)$$else$$title$$endif$" ,
45$ endif $
56$ if (date )$
67 date : [$ date $ ],
@@ -17,6 +18,7 @@ $if(author)$
1718 icon : unescape_text (" $it.icon$" ),
1819 )$ sep $ , $ endfor $ ),
1920 ),
21+ author-meta : " $author.firstname$" + " " + " $author.lastname$" ,
2022$ endif $
2123$ if (profile -photo )$
2224 profile-photo : unescape_text (" $profile-photo$" ),
@@ -41,4 +43,8 @@ $if(style.color-link)$
4143$ elseif (brand . color . link )$
4244 color-link : brand-color . link ,
4345$ endif $
46+ $ if (keywords )$
47+ keywords : [$ for (keywords )$ $ keywords $ $ sep $ , $ endfor $ ],
48+ keywords-meta : ($ for (keywords )$ " $keywords$" $ sep $ , $ endfor $ ),
49+ $ endif $
4450)
Original file line number Diff line number Diff line change 1- # import " @preview/fontawesome:0.5 .0" : *
1+ # import " @preview/fontawesome:0.6 .0" : *
22
33// ------------------------------------------------------------------------------
44// Style
334334 font-text : " Source Sans 3" ,
335335 color-accent : rgb (" #dc3522" ),
336336 color-link : color-darknight ,
337+ title-meta : none ,
338+ author-meta : none ,
337339 body ,
338340) = {
339341 // Set states ----------------------------------------------------------------
344346
345347 // Set document metadata -----------------------------------------------------
346348 set document (
347- author : author . firstname + " " + author . lastname ,
348- title : title ,
349+ title : title-meta ,
350+ author : author-meta ,
349351 )
350352
351353 set text (
You can’t perform that action at this time.
0 commit comments