Quotes: working, but missing HTML time tag

This commit is contained in:
Cyrille L 2022-12-19 17:53:24 +01:00
parent cacad4565d
commit f279583d11
1 changed files with 40 additions and 1 deletions

View File

@ -11,7 +11,7 @@ author: Autheur
tags: mots-clé-1,mots-clé-2 tags: mots-clé-1,mots-clé-2
date: YYYY-MM-DD (AAAA-MM-JJ) date: YYYY-MM-DD (AAAA-MM-JJ)
# Optionnels myltiples # Optionnels multiples
link: Nom du lien link: Nom du lien
URL URL
Texte Alternatif Texte Alternatif
@ -165,3 +165,42 @@ _image:Nom c=CSS t=https://... w=320px h=240
``` ```
_brut:NOM _brut:NOM
``` ```
### Citations
Possibilité dans toute citation d'utiliser les marqueurs
optionnels _xxx:
```
# Brut:
[[ CSS_TEST
_cite: echolib
_date: 2022
_lang: fr
_link: https://tyto.echolib.re
_book: Référence
((
Pfff, vraiment !
))
]]
# Sotie HTML:
<figure class="CSS_TEST">
<blockquote class="CSS_TEST" lang="fr" cite="https://tyto.echolib.re" title="echolib - Reference (2022)">
<p class="tyto">
Pfff, vraiment !
</p>
</blockquote>
<figcaption class="CSS_TEST">
<a class="figc" href="https://tyto.echolib.re">echolib - Reference (2022)</a>
</figcaption>
</figure>
# Brut
[[
Une citation simple, et sans paragraphe
]]
# Sortie HTML
<blockquote class="tyto">
Une citation simple, et sans paragraphe
</blockquote>
```