Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Docstring added
  • Loading branch information
Klaus Thoden committed Aug 22, 2018
1 parent 9c19260 commit ef40640
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
7 changes: 7 additions & 0 deletions libeoabibitem.py
@@ -1,5 +1,12 @@
# -*- coding: utf-8; mode: python -*-

"""A library for the formatting of bibliographical references.
The library is mostly superfluous, since the formatting is done with
pandoc-citeproc.
"""

import re
import sys
from lxml import etree
Expand Down
8 changes: 8 additions & 0 deletions mkimage.py
@@ -1,5 +1,13 @@
#!/usr/bin/python3
# -*- coding: utf-8; mode: python -*-

"""Create an automatically generated dummy cover to be used during testing.
If available, the program uses metadata found in the publication. An
image for the cover is chosen randomly.
"""

__version__ = "1.0"
__date__ = "20170323"
__author__ = "kthoden@mpiwg-berlin.mpg.de"
Expand Down
9 changes: 8 additions & 1 deletion tei2imxml.py
@@ -1,9 +1,16 @@
#!/usr/bin/python3
# -*- coding: utf-8; mode: python -*-

"""A converter from TEI to customized DocBook XML.
This program is used to get a TEI XML file into the EOAv1 workflow.
Out of the resulting files, the existing programs can be used to
create the output formats EPUB and Django.
"""

__version__ = "1.0"
__date__ = "20180116"
__author__ = "kthoden@mpiwg-berlin.mpg.de"
__doc__ = """A converter from TEI to Django."""

import os
import sys
Expand Down

0 comments on commit ef40640

Please sign in to comment.