2
0
Fork 0
textout/textoutpc/builtin_tags/Label.py

59 lines
1.6 KiB
Python
Raw Normal View History

2018-01-02 18:57:04 +01:00
#!/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.
#******************************************************************************
2018-01-02 18:57:04 +01:00
2018-05-24 21:57:42 +02:00
from ..tags import TextoutInlineTag as _TextoutInlineTag
2018-01-02 18:57:04 +01:00
import re as _re
__all__ = ["TextoutLabelTag", "TextoutTargetTag"]
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
2018-02-19 20:13:10 +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.tweak("label_prefix", "") + self._label
2018-01-02 18:57:04 +01:00
return '<a name="{}"></a>'.format(name)
2018-02-19 20:13:10 +01:00
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.tweak("label_prefix", "") + 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.