typesetting olivain porry

This commit is contained in:
Julie Blanc 2026-04-11 18:57:03 +02:00
parent eea67d2c7c
commit fc85403e3a
56 changed files with 141 additions and 43 deletions

View file

@ -4,7 +4,7 @@ Kirby::plugin('sarahgarcin/notes-tag', [
'tags' => [
'note' => [
'attr' => [
'note',
'note',
],
'html' => function($tag) {
$note = $tag->attr('note');
@ -12,6 +12,16 @@ Kirby::plugin('sarahgarcin/notes-tag', [
return '<span class="inline-note">'.$note.'</span>';
}
],
'print-break' => [
'html' => function($tag) {
return '<span class="print"><br></span>';
}
],
'nbsp' => [
'html' => function($tag) {
return '&nbsp;';
}
]
]
]);