
from parser_classes import *

class editortext(Environment):
    args = ''

class chaptered(Section):
    args = '[ toc ] title'
    level = 1

class chapteredA(Section):
    args = '[ toc ] title'
    level = 1

class sectioneinl(Section):
    args = '[ toc ] title'
    level = 2

class sectioneinlspace(Section):
    args = '[ toc ] title'
    level = 2

class sectionedb(Section):
    args = '[ toc ] title'
    level = 2

class sectionedbspace(Section):
    args = '[ toc ] title'
    level = 2

class subsecctionedbnospace(Section):
    args = '[ toc ] title'
    level = 3

class subsecctionedb(Section):
    args = '[ toc ] title'
    level = 3


class chapternump(Section):
    args = '[ toc ] title'
    level = 1

class chapterdiss(Section):
    args = '[ toc ] title'
    level = 1

class sectiondiss(Section):
    args = '[ toc ] title'
    level = 2

class sectiondissnospace(Section):
    args = '[ toc ] title'
    level = 2


class pag(Command):
    args = 'self'





