I'm continuing to treat markdown as code. Surely you've been wanting to do...
I'm continuing to treat markdown as code.
Surely you've been wanting to do this.
```
import markmodule
markmodule.import_md("hello_module.md")
import hello_module
print(hello_module.some_function("yo!"))
```
It's literate programming, eh? Here is the proof of concept library
Self-replies
Now supports basic syntactic sugar!
You can import `hello.md` with `import hello`
Works for basic modules, next is packages and submodules.