2
0
Fork 0
textout/textoutpc/tags/builtin/Label.py

56 lines
1.3 KiB
Python
Raw Normal View History

2018-01-02 18:57:04 +01:00
#!/usr/bin/env python3
2018-01-26 15:52:59 +01:00
from ..base import *
2018-01-02 18:57:04 +01:00
import re as _re
__all__ = ["TextoutLabelTag", "TextoutTargetTag"]
_v42compat = True
2018-01-16 13:34:11 +01:00
_labelexpr = _re.compile('^[a-z0-9-]{1,16}$', _re.I)
2018-01-02 18:57:04 +01:00
class TextoutLabelTag(TextoutInlineTag):
2018-01-02 18:57:04 +01:00
""" The label tag, defines an anchor at a point of the post.
Example uses:
2018-01-16 13:34:11 +01:00
[label=installation]Installation de tel logiciel... (no ending req.)
2018-01-02 18:57:04 +01:00
[label=compilation][/label] Compilation de tel logiciel...
"""
aliases = ('[label]',)
2018-01-16 13:34:11 +01:00
def prepare(self, name, value):
if not _labelexpr.match(value):
2018-01-02 18:57:04 +01:00
raise Exception
self._label = value
2018-01-02 18:57:04 +01:00
def begin_html(self):
#name = 'label-{}'.format(self._label)
2018-01-16 13:34:11 +01:00
#if _v42compat:
# name += ' ' + self._label
name = self._label if _v42compat else 'label-{}'.format(self._label)
2018-01-02 18:57:04 +01:00
return '<a name="{}"></a>'.format(name)
class TextoutTargetTag(TextoutInlineTag):
2018-01-02 18:57:04 +01:00
""" The goto tag, links to an anchor defined in the post.
Example uses:
[target=installation]Check out the installation manual[/target]!
"""
aliases = ('[target]',)
2018-01-16 13:34:11 +01:00
def prepare(self, name, value):
if not _labelexpr.match(value):
2018-01-02 18:57:04 +01:00
raise Exception
self._label = value
2018-01-02 18:57:04 +01:00
def begin_html(self):
#name = 'label-' + self._label
name = self._label if _v42compat else 'label-' + self._label
2018-01-02 18:57:04 +01:00
return '<a href="#{}">'.format(name)
def end_html(self):
return '</a>'
2018-01-02 18:57:04 +01:00
# End of file.