Lean4
/-- `#stacks_tags` retrieves all declarations that have the `stacks` attribute.
For each found declaration, it prints a line
```
'declaration_name' corresponds to tag 'declaration_tag'.
```
The variant `#stacks_tags!` also adds the theorem statement after each summary line.
-/
@[command_parser 1000]
public meta def stacksTags : Lean.ParserDescr✝ :=
ParserDescr.node✝ `Mathlib.StacksTag.stacksTags 1022
(ParserDescr.binary✝ `andthen (ParserDescr.symbol✝ "#stacks_tags")
(ParserDescr.unary✝ `optional (ParserDescr.symbol✝ "!")))