(path: Path, data: YamlMapping)
| 132 | |
| 133 | |
| 134 | def write_yaml(path: Path, data: YamlMapping) -> None: |
| 135 | path.write_text( |
| 136 | yaml.safe_dump(data, sort_keys=False, allow_unicode=True), |
| 137 | encoding="utf-8", |
| 138 | ) |
| 139 | |
| 140 | |
| 141 | def prefix_path(value: object, pages_dir: str) -> object: |
no outgoing calls
no test coverage detected