Fogus

Results 14 issues of Fogus

This may enhance or maybe replace our current parser, with Marg-specific modifications. We should look at what it takes to make this happen.

discussion
to-review

Marg currently processes each file in turn generating the docs in order. However, it would be nice to allow the specification of a documentation header that is always placed at...

discussion
new-feature

This should be fully parsed by Marg: ``` (defprotocol Foo "This is a protocol docstring. It should be presented on the LHS doc view" (bar [this] "This is a protocol...

parser
new-feature

At the moment Marg is compiled to provide a -main entry point, but I think it should act as a pure library only. We should create a whole new project...

discussion
new-feature

Your mission, if you choose to accept it is to modify Marginalia (minimally if possible) to fully parse all comments in the Ring sample app at https://github.com/diamondap/ring-sample. Of particular note...

bug
parser

- Getting started - Example - Walk-through - Command-line flags - Moar

docs

Backslashes in docstrings are not output properly and cause the docstring to remain in the code pane.

bug

Marg should be able to parse and output docs for a project's tests. This could be via a flag as it's might not be needed by default. :F

new-feature

Baysick should support subroutines. They would work something like this: ``` 10 PRINT "Subroutine test" 20 LET ('a := 0) 30 PRINT "Variable is " % 'a // prints 0...