mirror of https://github.com/eyhc1/rendercv.git
engineeringresumes: implement `disable_external_link_icons` option
This commit is contained in:
parent
8c93f24f42
commit
70e1721cd5
|
@ -32,6 +32,8 @@
|
|||
\usepackage{paracol} % for two and three column entries
|
||||
\usepackage{ifthen} % for conditional statements
|
||||
\usepackage{needspace} % for avoiding page brake right after the section title
|
||||
|
||||
% Theme specific:
|
||||
\usepackage{charter} % for using charter font
|
||||
|
||||
% Ensure that generate pdf is machine readable/ATS parsable:
|
||||
|
@ -84,7 +86,7 @@
|
|||
<<design.margins.section_title.bottom>>
|
||||
} % section title spacing
|
||||
|
||||
\renewcommand\labelitemi{$\vcenter{\hbox{\small$\bullet$}}$}
|
||||
\renewcommand\labelitemi{$\vcenter{\hbox{\small$\bullet$}}$} % custom bullet points
|
||||
\newenvironment{highlights}{
|
||||
\begin{itemize}[
|
||||
topsep=<<design.margins.highlights_area.top>>,
|
||||
|
@ -151,7 +153,10 @@
|
|||
}%
|
||||
}%
|
||||
|
||||
% % save the original href command in a new command:
|
||||
% \let\hrefWithoutArrow\href
|
||||
% % new command for external links:
|
||||
% \renewcommand{\href}[2]{\hrefWithoutArrow{#1}{\mbox{\ifthenelse{\equal{#2}{}}{ }{#2 }\raisebox{.15ex}{\footnotesize \faExternalLink*}}}}
|
||||
% save the original href command in a new command:
|
||||
\let\hrefWithoutArrow\href
|
||||
|
||||
% new command for external links:
|
||||
((* if not design.disable_external_link_icons *))
|
||||
\renewcommand{\href}[2]{\hrefWithoutArrow{#1}{\mbox{\ifthenelse{\equal{#2}{}}{ }{#2 }\raisebox{.15ex}{\footnotesize \faExternalLink*}}}}
|
||||
((* endif *))
|
Loading…
Reference in New Issue