mirror of https://github.com/eyhc1/rendercv.git
themes: fix special character bug in connections (#64)
This commit is contained in:
parent
d349171f22
commit
7de8ef8a4a
|
@ -11,9 +11,9 @@
|
||||||
\normalsize
|
\normalsize
|
||||||
((* for connection in cv.connections *))
|
((* for connection in cv.connections *))
|
||||||
\mbox{((*- if connection["url"] -*))
|
\mbox{((*- if connection["url"] -*))
|
||||||
\hrefWithoutArrow{<<connection["url"]>>}{{\footnotesize<<connection["latex_icon"]>>}\hspace*{0.13cm}<<connection["placeholder"]>>}
|
\hrefWithoutArrow{<<connection["url"]>>}{{\footnotesize<<connection["latex_icon"]>>}\hspace*{0.13cm}<<connection["placeholder"]|escape_latex_characters>>}
|
||||||
((*- else -*))
|
((*- else -*))
|
||||||
{\footnotesize<<connection["latex_icon"]>>}\hspace*{0.13cm}<<connection["placeholder"]>>
|
{\footnotesize<<connection["latex_icon"]>>}\hspace*{0.13cm}<<connection["placeholder"]|escape_latex_characters>>
|
||||||
((*- endif -*))}
|
((*- endif -*))}
|
||||||
\kern <<design.margins.header.horizontal_between_connections>>
|
\kern <<design.margins.header.horizontal_between_connections>>
|
||||||
((* endfor *))
|
((* endfor *))
|
||||||
|
|
|
@ -17,9 +17,9 @@
|
||||||
\normalsize
|
\normalsize
|
||||||
((* for connection in cv.connections *))
|
((* for connection in cv.connections *))
|
||||||
\mbox{((*- if connection["url"] -*))
|
\mbox{((*- if connection["url"] -*))
|
||||||
\hrefWithoutArrow{<<connection["url"]>>}{<<connection["clean_url"]>>}
|
\hrefWithoutArrow{<<connection["url"]>>}{<<connection["clean_url"]|escape_latex_characters>>}
|
||||||
((*- else -*))
|
((*- else -*))
|
||||||
<<connection["placeholder"]>>
|
<<connection["placeholder"]|escape_latex_characters>>
|
||||||
((*- endif -*))}%
|
((*- endif -*))}%
|
||||||
\kern <<design.margins.header.horizontal_between_connections|divide_length_by(2)>>%
|
\kern <<design.margins.header.horizontal_between_connections|divide_length_by(2)>>%
|
||||||
((* if not loop.last *))
|
((* if not loop.last *))
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
\normalsize
|
\normalsize
|
||||||
((* for connection in cv.connections *))
|
((* for connection in cv.connections *))
|
||||||
\mbox{((*- if connection["url"] -*))
|
\mbox{((*- if connection["url"] -*))
|
||||||
\hrefWithoutArrow{<<connection["url"]>>}{\color{black}{\footnotesize<<connection["latex_icon"]>>}\hspace*{0.13cm}<<connection["placeholder"]>>}
|
\hrefWithoutArrow{<<connection["url"]>>}{\color{black}{\footnotesize<<connection["latex_icon"]>>}\hspace*{0.13cm}<<connection["placeholder"]|escape_latex_characters>>}
|
||||||
((*- else -*))
|
((*- else -*))
|
||||||
{\color{black}{\footnotesize<<connection["latex_icon"]>>}\hspace*{0.13cm}<<connection["placeholder"]>>}
|
{\color{black}{\footnotesize<<connection["latex_icon"]>>}\hspace*{0.13cm}<<connection["placeholder"]|escape_latex_characters>>}
|
||||||
((*- endif -*))}
|
((*- endif -*))}
|
||||||
\kern <<design.margins.header.horizontal_between_connections>>
|
\kern <<design.margins.header.horizontal_between_connections>>
|
||||||
((* endfor *))
|
((* endfor *))
|
||||||
|
|
Loading…
Reference in New Issue