Escape a string for YAML frontmatter.
(s: str)
| 119 | |
| 120 | |
| 121 | def escape_yaml_string(s: str) -> str: |
| 122 | """Escape a string for YAML frontmatter.""" |
| 123 | return json.dumps(s) |
| 124 | |
| 125 | |
| 126 | def get_source_link(obj: griffe_t.Object) -> str | None: |
no outgoing calls
no test coverage detected
searching dependent graphs…