d0c-s4vage / lookatme

An interactive, terminal-based markdown presenter
https://lookatme.readthedocs.io/en/latest/
MIT License
2.08k stars 61 forks source link

v3.0 - Update schema for inline code #164

Closed d0c-s4vage closed 1 year ago

d0c-s4vage commented 1 year ago

Describe the Feature Request Inline code should be able to be customizable with:

Tips

This will involve:

Maybe something like this:

class InlineCodeSchema(Schema):
    ...

class CodeSchema(Schema):
    inline = fields.Nested(InlineCodeSchema, ...)

class StyleSchema(Schema):
    ...
    code = fields.Nested(CodeSchema, ...)
    ...

Pull Request Target

Be sure to make the 3.0-dev branch the PR target!