handling large md files
// Please enter a detailed description of the issue // Description of the issue: I cannot handle a large markdown file
// Please enter a list of steps required to reproduce the issue // Steps to reproduce:
- click an item in the table of contents that is a bit further down
// If applicable please attach a sample document that causes the issue for you. Attached is Python_15.md
// Configuration (do not edit) Marked 2 1054 (Mac App Store)
macOS Version: 14.0
additionalMathJaxConfig:
allowPageBreakInCode: YES
bookTxtIsLeanpub: NO
summaryMdIsGitBook: NO
codeIsPoetry: NO
codeCanWrap: YES
collapsibleHeadlines: NO
convertGithubCheckboxes: YES
convertGithubEmoji: YES
convertYAMLToMMD: NO
defaultMathJaxConfig: TeX-AMS-MML_HTMLorMML
defaultPreviewStyle: swiss
defaultProcessor: MultiMarkdown
enableMiniMap: NO
excludeBlockQuotesFromCounts: NO
excludeFootnotesFromCounts: NO
excludeVerbatimFromCounts: NO
excludeCaptionsFromCounts: NO
folderPreviewExtensionsArray: md, markdown, txt, mdown, html, opml
githubNewlines: YES
h1IsPageBreak: NO
h2IsPageBreak: NO
hrIsPageBreak: NO
includeMathJax: YES
includeKatex: NO
limitTextWidth: NO
mathNumberEquations: NO
mathNumberEquationsSide: 0
mathNumberEquationsAMSOnly: NO
minimalJavaScript: NO
outlineModeExtensions:
permissionGranted: NO
printHeaderBottomLeft:
printHeaderBottomRight:
printHeaderFirstPage: NO
printFooterFirstPage: NO
printHeaderTopLeft:
printHeaderTopRight:
processHTMLFiles: YES
removeMetadataForPreview: NO
removeYAMLHeaders: NO
scrollToEdit: YES
shouldDetectCritic: YES
shouldHighlightMarkupErrors: NO
shouldLoadCritic: NO
syntaxHighlight: NO
syntaxHighlightOnlyLang: NO
useCustomMarkdownProcessor: NO
customMarkdownProcessor:
useCustomPreprocessor: NO
customPreprocessor:
useFirstH1AsPrintTitle: YES
- Python_15.md 229 KB
Keyboard shortcuts
Generic
? | Show this help |
---|---|
ESC | Blurs the current field |
Comment Form
r | Focus the comment reply box |
---|---|
^ + ↩ | Submit the comment |
You can use Command ⌘
instead of Control ^
on Mac
Support Staff 1 Posted by Brett on 16 Nov, 2023 02:34 PM
It has nothing to do with the size of the file, Marked is choking on
several empty fenced code blocks, which are messing up its built-in code
rendering. If you remove all instances of
```python
```
in the file, everything works as expected. Attaching a fixed version of
your document.
Yes, Marked should be able to ignore those, but something about them is
breaking the regex Marked uses to detect fenced code. I'll have to look
into that.
On 16 Nov 2023, at 4:17, Pietro wrote:
Support Staff 2 Posted by Brett on 16 Nov, 2023 02:36 PM
By the way, once the file is "fixed" the built-in TOC makes navigating this document a breeze. You can hit ⌘T to bring it up, then hit space and start typing part of a headline and it will filter the list, then you can use arrow keys to highlight and enter to jump to that section.
Support Staff 3 Posted by Brett on 16 Nov, 2023 02:40 PM
Also, you might consider breaking this into multipile files, just for ease of editing. Marked offers a ton of ways to do this, can generate the TOC automatically (insert with
<!--TOC-->
in the document), and can output a compiled single Markdown file if needed. Depending on your final destination, you can use any of these options.Support Staff 4 Posted by Brett on 16 Nov, 2023 02:45 PM
For example, if you delete your whole table of contents and insert this instead:
You'll get basically the same TOC and you won't have to insert all those
<a name>
tags throughout the document. It will just work based on headlines.