Skip to content

Commit b37377a

Browse files
Plan: investigate and fix inline LaTeX rendering
Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/25e889c7-d501-4e74-9e49-01839bcf0feb Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>
1 parent d0db9e4 commit b37377a

3 files changed

Lines changed: 591 additions & 17 deletions

File tree

desktop-app/resources/index.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,10 @@
5151
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
5252
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js"></script>
5353

54-
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.2.7/pdfmake.min.js"></script>
54+
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.2.7/pdfmake.min.js"></script>
5555
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.2.7/vfs_fonts.js"></script>
5656
<script src="https://cdnjs.cloudflare.com/ajax/libs/pako/2.1.0/pako.min.js" integrity="sha384-rNlaE5fs9dGIjmxWDALQh/RBAaGRYT5ChrzHo6tRfgrZ36iRFAiquP5g41Jsv+0j" crossorigin="anonymous"></script>
57+
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-yaml/4.1.0/js-yaml.min.js"></script>
5758
</head>
5859
<body>
5960
<div class="app-container">
@@ -276,6 +277,11 @@ <h5>Menu</h5>
276277
<p id="github-import-title" class="reset-modal-message">Import Markdown from GitHub</p>
277278
<input type="url" id="github-import-url" class="rename-modal-input" placeholder="https://github.com/owner/repo/blob/main/README.md" />
278279
<select id="github-import-file-select" class="rename-modal-input" style="display:none;"></select>
280+
<div id="github-import-selection-toolbar" class="github-import-selection-toolbar" style="display:none;">
281+
<span id="github-import-selected-count" class="github-import-selected-count">0 selected</span>
282+
<button type="button" class="reset-modal-btn" id="github-import-select-all">Select All</button>
283+
</div>
284+
<div id="github-import-tree" class="github-import-tree" style="display:none;"></div>
279285
<p id="github-import-error" class="github-import-error" style="display:none;"></p>
280286
<div class="reset-modal-actions">
281287
<button class="reset-modal-btn reset-modal-cancel" id="github-import-cancel">Cancel</button>

0 commit comments

Comments
 (0)