22 lines
313 B
Python
22 lines
313 B
Python
#!/usr/bin/env python3
|
|
|
|
from sphinx.directives import ObjectDescription
|
|
from sphinx.domains import ObjType
|
|
|
|
|
|
class Dialogue(ObjType):
|
|
pass
|
|
|
|
|
|
class Dline(ObjType):
|
|
pass
|
|
|
|
|
|
class DialogueDirective(ObjectDescription):
|
|
|
|
has_content = True
|
|
|
|
|
|
class DlineDirective(ObjectDescription):
|
|
|
|
has_content = True
|