python-tldp/tldp/doctypes/example.py

23 lines
448 B
Python
Raw Normal View History

2016-02-12 21:25:19 +00:00
#! /usr/bin/python
2016-02-18 21:25:02 +00:00
# -*- coding: utf8 -*-
2016-04-29 15:02:02 +00:00
#
# Copyright (c) 2016 Linux Documentation Project
2016-02-12 21:25:19 +00:00
from __future__ import absolute_import, division, print_function
2016-03-15 05:18:09 +00:00
from __future__ import unicode_literals
2016-02-12 21:25:19 +00:00
import logging
2016-02-12 21:25:19 +00:00
from tldp.doctypes.common import BaseDoctype
2016-02-26 19:56:28 +00:00
logger = logging.getLogger(__name__)
class Frobnitz(BaseDoctype):
2016-02-12 21:25:19 +00:00
formatname = 'Frobnitz'
extensions = ['.fb']
signatures = ['{{Frobnitz-Format 2.3}}']
#
# -- end of file