mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-12 21:48:25 +03:00
30 lines
343 B
Markdown
30 lines
343 B
Markdown
# Test the refactored metatdata markup
|
|
|
|
```catala-metadata
|
|
declaration enumeration E:
|
|
-- A
|
|
-- B
|
|
|
|
declaration scope S:
|
|
context a content E
|
|
```
|
|
|
|
Some law text...
|
|
|
|
```catala-metadata
|
|
declaration scope S2:
|
|
context b content E
|
|
```
|
|
|
|
## PROGRAM
|
|
|
|
```catala
|
|
scope S:
|
|
definition a equals A
|
|
```
|
|
|
|
```catala
|
|
scope S2:
|
|
definition b equals B
|
|
```
|