It would be nice to have a way to include icons (from FontAwesome or Material Icons) into Markdown Pages.
As you know both are included over
<i class="...">...</i>
, so my suggestion is to create the shortcut
::icon::
for icons, like the emoji shortcut.
There also should be added an automatic
fas
in FontAwesome Mode, when there is no icon style defined.
## Render examples
  • ::fas fa-beer::
    =>
    <i class="fas fa-beer"></i>
    in FA Mode
-
::fa-coffee::
=>
<i class="fas fa-coffee"></i>
in FA Mode
-
::user::
=>
<i class="material-icons">user</i>
in Material Icons Mode
Thank you