File: frames.py

package info (click to toggle)
python-pylatex 1.4.2%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,044 kB
  • sloc: python: 3,810; sh: 209; makefile: 169; xml: 12
file content (20 lines) | stat: -rw-r--r-- 490 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
"""
This module implements the classes that deal with adding frames.

..  :copyright: (c) 2014 by Jelte Fennema.
    :license: MIT, see License for more details.
"""

from .base_classes import ContainerCommand, Environment
from .package import Package


class MdFramed(Environment):
    """A class that defines an mdframed environment."""

    packages = [Package("mdframed")]


class FBox(ContainerCommand):
    """A class that defines an fbox ContainerCommand."""