13 lines
215 B
Python
13 lines
215 B
Python
#!/usr/bin/env python3
|
|
|
|
from sphinx.directives import ObjectDescription
|
|
from sphinx.domains import ObjType
|
|
|
|
|
|
class Character(ObjType):
|
|
pass
|
|
|
|
|
|
class CharacterDirective(ObjectDescription):
|
|
|
|
has_content = True
|