sbmlutils.notes

Module for notes.

Notes can be either written in markdown or HTML. Markdown -> HTML conversion is performed using markdown-it-py for the conversion. No styles for the display are inserted here.

Module Contents

Classes

NotesFormat

Supported formats for Notes.

Notes

SBML notes.

Attributes

logger

notes

sbmlutils.notes.logger[source]
class sbmlutils.notes.NotesFormat[source]

Bases: str, enum.Enum

Supported formats for Notes.

MARKDOWN = 'markdown'[source]
HTML = 'html'[source]
class sbmlutils.notes.Notes(notes, format=NotesFormat.MARKDOWN)[source]

SBML notes.

Parameters:
__str__()[source]

Get string representation.

Return type:

str

sbmlutils.notes.notes[source]