def defListEntry()

in src/filter-j2.py [0:0]


def defListEntry(value):
    """
    Creates a definition list entry (the description of a term) from the given
    Markdown content.

    :param value:
        The string to filter.

    :return string:
        A definition list entry containing all of the given Markdown content.
    """
    return ': ' + '\n  '.join(value.split('\n')) + '\n'