simple ====== A test module with functions, variables and long docstring This one has even the module docstring longer as it can then form a testcase of such module. # Usage # This module is only used for testing of docstring parsing and object (by which we mean *function* or *variable*, not some OOP stuff) printing functionality. The internal format is Markdown-ish, but is parsed as plain text. But still, as an example we will try to use some common Markdown. For example, this: #!/bin/bash # is like first two lines of this file look like. Variables --------- ### `$SIMPLE_LIMIT` ### A test variable with a short docstring ### `$SIMPLE_DEBUG` ### A test variable with a long docstring Not really long but the longer version (header plus the rest) Functions --------- ### `simple_foo()` ### A test function with a short docstring ### `simple_other_function()` ### A test function with a long docstring Not really long but the longer version (header plus the rest)