paritytech / prdoc

prdoc files are YAML files following a defined schema and helping with code change documentation.
MIT License
11 stars 1 forks source link

Yaml anchors support #8

Closed chevdor closed 1 year ago

chevdor commented 1 year ago

This PR adds YAML anchors support, allowing things like:

...
   doc:
      - audience: Builder
        description: &desc |
          Sunt voluptate ad duis consequat ea in dolore non adipisicing.

      - audience: Validator
        description: *desc
...