(text: &str)
| 519 | } |
| 520 | |
| 521 | fn escape_html(text: &str) -> String { |
| 522 | text.replace('&', "&") |
| 523 | .replace('<', "<") |
| 524 | .replace('>', ">") |
| 525 | .replace('"', """) |
| 526 | .replace('\'', "'") |
| 527 | } |
| 528 | |
| 529 | const CSS_STYLES: &str = r#" |
| 530 | body { |
no outgoing calls
no test coverage detected