Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
en:help:redaction [14/08/2021 02:55]
Hugo [Embedding HTML and PHP]
en:help:redaction [14/08/2021 02:58] (current)
Hugo [Syntax Plugins]
Line 460: Line 460:
 </HTML> </HTML>
  
 +===== Icones =====
 +
 +Yon can use icons font, like [[https://fonts.google.com/icons|Material ]] and [[https://fontawesome.com/v5.15/how-to-use/on-the-web/referencing-icons/basic-use|Font Awesome]], in an article by using their own syntax and a %%<html>%% tag. 
 +
 +This code for //Material// icons:
 +<code>
 +<html><span class="material-icons">home</span></html>
 +</code>
 +will look like this :
 +
 +<html><span class="material-icons">home</span></html>
 +
 +This code for //Font Awesome// icons:
 +<code>
 +<html><span class="fas fa-camera"></span></html>
 +</code>
 +will look like this:
 +
 +<html><span class="fas fa-camera"></span></html>
 ===== RSS/ATOM Feed Aggregation ===== ===== RSS/ATOM Feed Aggregation =====
 [[DokuWiki]] can integrate data from external XML feeds. For parsing the XML feeds, [[http://simplepie.org/|SimplePie]] is used. All formats understood by SimplePie can be used in DokuWiki as well. You can influence the rendering by multiple additional space separated parameters: [[DokuWiki]] can integrate data from external XML feeds. For parsing the XML feeds, [[http://simplepie.org/|SimplePie]] is used. All formats understood by SimplePie can be used in DokuWiki as well. You can influence the rendering by multiple additional space separated parameters:
Line 491: Line 510:
 | %%~~NOCACHE~~%% | DokuWiki caches all output by default. Sometimes this might not be wanted (eg. when the %%<php>%% syntax above is used), adding this macro will force DokuWiki to rerender a page on every call | | %%~~NOCACHE~~%% | DokuWiki caches all output by default. Sometimes this might not be wanted (eg. when the %%<php>%% syntax above is used), adding this macro will force DokuWiki to rerender a page on every call |
  
-===== Syntax Plugins ===== 
- 
-DokuWiki's syntax can be extended by [[doku>plugins|Plugins]]. How the installed plugins are used is described on their appropriate description pages. The following syntax plugins are available in this particular DokuWiki installation: 
- 
-~~INFO:syntaxplugins~~