2
0
Fork 0
textout/textoutpc/builtin/_Label.py

61 lines
1.5 KiB
Python
Executable File

#!/usr/bin/env python3
#******************************************************************************
# Copyright (C) 2018 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr>
# This file is part of the textoutpc project, which is MIT-licensed.
#******************************************************************************
from .. import InlineTag as _InlineTag
import re as _re
__all__ = ["LabelTag", "TargetTag"]
_labelexpr = _re.compile('^[a-z0-9-]{1,16}$', _re.I)
class LabelTag(_InlineTag):
""" The label tag, defines an anchor at a point of the post.
Example uses:
[label=installation]Installation de tel logiciel... (no ending req.)
[label=compilation][/label] Compilation de tel logiciel...
"""
aliases = ('[label]',)
def prepare(self, name, value):
if not _labelexpr.match(value):
raise Exception
self._label = value
def begin_html(self):
#name = 'label-{}'.format(self._label)
#if _v42compat:
# name += ' ' + self._label
name = self.tweak("label_prefix", "") + self._label
return '<a name="{}"></a>'.format(name)
class TargetTag(_InlineTag):
""" The goto tag, links to an anchor defined in the post.
Example uses:
[target=installation]Check out the installation manual[/target]!
"""
aliases = ('[target]',)
def prepare(self, name, value):
if not _labelexpr.match(value):
raise Exception
self._label = value
def begin_html(self):
#name = 'label-' + self._label
name = self.tweak("label_prefix", "") + self._label
return '<a href="#{}">'.format(name)
def end_html(self):
return '</a>'
# End of file.