Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Option to preserve comments in the AST #1967

Open
pawamoy opened this issue Apr 21, 2024 · 2 comments
Open

Option to preserve comments in the AST #1967

pawamoy opened this issue Apr 21, 2024 · 2 comments

Comments

@pawamoy
Copy link
Sponsor

pawamoy commented Apr 21, 2024

Hello, thanks for this wonderful piece of software 馃檪

I'm maintaining mkdocstrings, which uses Jinja templates to render API documentation for different languages. Recently I had this idea of doing the same thing (collecting and rendering API docs) for... Jinja templates themselves 馃槢 It's just an idea for now, but I'll be tracking my progress here: mkdocstrings/mkdocstrings#661.

I see that Jinja provides the Environment.parse method, which builds an AST of the Jinja source: this is fantastic. I'll be able to visit such trees to build useful information and store it in structures that make it easy to render them in other Jinja templates.

However... Jinja comments are not preserved 馃槩 This #719 (comment) says that they're probably discarded by the lexer.

I can already extract lots of useful information from templates, but I had in mind to allow template writers to use Jinja comments to document variables, filters, blocks, macros, whatever, directly in the template, just like we document attributes, functions, classes, etc., directly within Python code.

For this I would need an option to tell Environment.parse to preserve the comments in the generated AST. Do you think that is feasible? I can definitely free up some of my time to work on this.

In any case, what do you think of this idea of auto-documentation for Jinja templates? I think that would be a wonderful tool in the Jinja ecosystem 馃槃 I personally have lots of Jinja templates that I would document this way 馃檪

@pawamoy
Copy link
Sponsor Author

pawamoy commented Apr 21, 2024

I'm happy to maintain a patched lexer/parser in an external package if you don't feel comfortable implementing this option in core. I'd greatly appreciate some guidance on how to change the lexer/parser to preserve comments 馃檪

I suppose I must somehow stop ignoring comments in the lexer, and also create a new Comment node that could be added to the AST.

@pawamoy
Copy link
Sponsor Author

pawamoy commented Apr 21, 2024

OK I managed to get something working 馃檪

Basically:

  • remove comment tokens from ignored set
  • add a comment node
  • handle comment tokens in subparse
ignored_tokens = frozenset(
    [
        # TOKEN_COMMENT_BEGIN,
        # TOKEN_COMMENT,
        # TOKEN_COMMENT_END,
        TOKEN_WHITESPACE,
        TOKEN_LINECOMMENT_BEGIN,
        TOKEN_LINECOMMENT_END,
        TOKEN_LINECOMMENT,
    ]
)
class Comment(Stmt):
    """A template comment."""

    fields = ("data",)
    data: str
# in Parser.subparse
elif token.type == "comment_begin":
    flush_data()
    next(self.stream)
    body.append(nodes.Comment(next(self.stream).value))
    self.stream.expect("comment_end")

Printing the AST gives something like:

Template(body=[Comment(data=' Admonitions template. '), ...])

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant