sphinx_storymaker/sphinx_storymaker/universe.py

31 lines
417 B
Python

#!/usr/bin/env python3
from sphinx.directives import ObjectDescription
from sphinx.domains import ObjType
class Item(ObjType):
pass
class Knowledge(ObjType):
pass
class Ability(ObjType):
pass
class ItemDirective(ObjectDescription):
has_content = True
class KnowledgeDirective(ObjectDescription):
has_content = True
class AbilityDirective(ObjectDescription):
has_content = True