I have purchased a License for the Fontawesome Pro Icons package and was wondering how I can use the pro library kit in mkdocs material? I currently use the free fonts like this, for example:
:fontawesome-solid-user-secret:
But I would like to use the "thin" version which is part of the pro package, like this:
:fontawesome-thin-user-secret:
How can I achieve that? TIA
First, declare a
custom_dirinmkdocs.ymlif you haven't already:Then download Font Awesome, extract it, and move the contents of the
svgsdirectory (not including the folder itself) to{CUSTOM_DIR}/.icons/fontawesome. For example, if yourcustom_dirisdocs/.overrides, you would move the contents of thesvgsdirectory todocs/.overrides/.icons/fontawesome. Everything else that came with the download is safe to delete.Your
custom_dirshould look like this:You can then use Font Awesome Pro icons in the same way you already do the free ones (e.g.
:fontawesome-thin-user-secret:will work as written).