0.8.1
Updated crossnote to version 0.8.19.
Changes
- Deprecated the
processWikiLink
inparser.js
. Nowcrossnote
handles how we process the wiki link.
We also added two more options:wikiLinkTargetFileExtension
: The file extension of the target file. Default ismd
. For example:[[test]]
will be transformed to[test](test.md)
[[test.md]]
will be transformed to[test](test.md)
[[test.pdf]]
will be transformed to[test](test.pdf)
because it has a file extension.
wikiLinkTargetFileNameChangeCase
: How we transform the file name. Default isnone
so we won't change the file name.
A list of available options can be found at: https://shd101wyy.github.io/crossnote/types/WikiLinkTargetFileNameChangeCase.html
Bug fixes
- Reverted the markdown transformer and deleted the logic of inserting anchor elements as it's causing a lot of problems.
The in-preview editor is not working as expected. So we now hide its highlight lines and elements feature if the markdown file failed to generate the correct source map. - Fixed the bug that global custom CSS is not working.