Manuscript#

Qualified name: rsm.nodes.Manuscript

class rsm.nodes.Manuscript(src='', date=None, **kwargs)[source]#

Bases: Heading

Methods

Attributes

full_number

newmetakeys

Meta keys to add to those of the parent class.

nonum

Whether this node should be automatically given a number.

newmetakeys: ClassVar[set] = {'date'}[source]#

Meta keys to add to those of the parent class.

Important

Only use this when defining a new Node subclass. When dealing with Node isntances, do not access this attribute directly neither for reading nor writing. Always use metakeys() in that case.

See also

metakeys()

Examples

The keys in newmetakeys are added to the meta keys of the parent class.

>>> nodes.Heading.newmetakeys
{'title'}
>>> nodes.Heading.metakeys() == nodes.Node.metakeys() | {"title"}
True

The intended use, and only supported use, of newmetakeys is at the time of class definition.

>>> class NewNode(nodes.Node):
...     newmetakeys = {"newkey"}
>>> NewNode.metakeys() == nodes.Node.metakeys() | {"newkey"}
True
nonum: bool = True[source]#

Whether this node should be automatically given a number.