(input_file)
| 63 | return markdown_text |
| 64 | |
| 65 | def documentfile2document(input_file): |
| 66 | documents = [] |
| 67 | for doc in json.load(open(input_file, 'r')): |
| 68 | document = Document.from_dict(doc) |
| 69 | documents.append(document) |
| 70 | return documents |
| 71 | |
| 72 | def idpfile2document(input_file): |
| 73 | content_json = json.load(open(input_file, 'r')) |
nothing calls this directly
no outgoing calls
no test coverage detected