(m)
| 1 | |
| 2 | import re |
| 3 | def repl(m): |
| 4 | inner_word = m.group(1) |
| 5 | return '<br><br>$' + inner_word + '$<br><br>' |
| 6 | with open('readme.md', 'r') as f_read: |
| 7 | text = f_read.readlines() |
| 8 | for k, item in enumerate(text): |
nothing calls this directly
no outgoing calls
no test coverage detected