- `class Color(Enum)`
A enum for selecting colors
Members: RED, BLUE, GREEN
- `get_color(self)`
Color method for testing
- `@property get_name`
name property for testing
Here is a preview of the fastcore library, for instance:
_md = generate_markdown('fastcore', False)_lns = _md.splitlines()print('\n'.join([x for x in _lns][:20]))
# monsterui Module Documentation
## monsterui.core
- `class Theme(Enum)`
Selector to choose theme and get all headers needed for app. Includes frankenui + tailwind + daisyui + highlight.js options
Members: slate, stone, gray, neutral, red, rose, orange, green, blue, yellow, violet, zinc
- `headers(self, mode, daisy, highlightjs)`
Create frankenui and tailwind cdns
- `local_headers(self, mode, static_dir, daisy, highlightjs)`
Create headers using local files downloaded from CDNs
## monsterui.daisy
- `class AlertT(Enum)`
Alert styles from DaisyUI
Members: info, success, warning, error
Write markdown to file
We can generate our list of symbols as a markdown file like so:
pysym2md
def pysym2md( package_name:str<Name of the Python package>, include_no_docstring:<Include symbols without docstrings?>=False, verbose:<Turn on verbose logging?>=False, output_file:str<The output file>='filelist.md'):
Generate a list of symbols corresponding to a python package in a markdown format.