Generate the html string with highlighted diff.
(old_lines, new_lines)
| 10 | |
| 11 | |
| 12 | def highlight_diff(old_lines, new_lines): |
| 13 | """Generate the html string with highlighted diff.""" |
| 14 | return ''.join(_highlight_diff(old_lines, new_lines)) |
| 15 | |
| 16 | |
| 17 | def _highlight_diff(a, b): |
nothing calls this directly
no test coverage detected