2
0
Fork 0
textout/textoutpc/builtin/__init__.py

36 lines
949 B
Python
Executable File

#!/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.
#******************************************************************************
""" Built-in tags and smileys for the `textoutpc` module.
Some of these options will probably have to move to a separate module
Planète Casio-specific, but still, here we are.
"""
# Tags.
from ._Align import *
from ._Code import *
from ._Image import *
from ._Label import *
from ._Link import *
from ._List import *
from ._Progress import *
from ._Quote import *
from ._Rot import *
from ._Show import *
from ._Spoiler import *
from ._Text import *
from ._Title import *
from ._Video import *
# Other resources (smileys, multimedia).
from ._Smileys import *
from ._Images import *
from ._Videos import *
# End of file.