MarkdownLivePreview
MarkdownLivePreview copied to clipboard
Unable to preview the markdown.
No option to MarkdownLivePreview: Open Preview
were found and even pressing alt+m
didn't work
Alright, could you do this for me:
- run this in the console:
view.settings().get('syntax')
and paste the output here. How MarkdownLivePreview currently checks if your file is in markdown (and hence enables itself) is by looking for the wordmarkdown
in your syntax file name. - make sure you are able to find the
Open Settings File
option in the command palette still? - look for some errors in the console (if you're not familiar with python, errors start with keyword
Traceback
). If you're not too sure, paste the whole thing here. - paste the list of plugins you have installed (find
Preferences: Package Control Settings User
, it's the list under the keyinstalled_packages
)
Also, alt+m
won't work anymore. I removed it because it was conflicting with people's keybinding. Instead, you have to add it yourself in your own keybinding file (there's an example on the README.md)
same problem, no errors in the console
git: tracking working dir D:\repository\notes
>>> view.settings().get('syntax')
'Packages/Markdown/Markdown.sublime-syntax'
When I have a YAML block in the beginning of the markdown file, the complete preview is empty. When deleting the yaml specific line ”---” before and after the block, everything gets rendered correctly.
Same issue here as @partnerwerk. Quite annoying as many static site generators (Hugo, Jekyll) use this structure.
In fact, using ST3.2.2 (build 3211) and MarkdownLivePreview 3.0.1, I still have no output with this simple example of code:
---
title: Test of YAML header
---
My document here
In fact, using ST3.2.2 (build 3211) and MarkdownLivePreview 3.0.1, I still have no output with this simple example of code:
--- title: Test of YAML header --- My document here
When I move the
---
title: Test of YAML header
---
without back to line I can see my markdown on the preview but i have also the title and things write...