Compatibility with Windows 10.1903
Note: versioning number matches now Sciter version.
Compatibility with Windows 10.1903
Note: versioning number matches now Sciter version.
Fix of “Save As” functionality for paths that contain spaces and non-ASCII symbols. Check this.
No new functionality, just various Sciter related bug fixes.
This version adds Markdown (GitHub flavor) support – editing and viewing.
This is an initial implementation – pretty basic. I am sure I’ve missed something – we will see.
For anyone interested:
HTML DOM to Markdown convertor code is here.
And Markdown to HTML is here . Implementation is based on generators that I’ve found quite useful for markdown parsing.
This version adds initial support of Markdown document representation.
Button “Markdown” shows current document in Markdown form. Markdown source can be copy-pasted into any Web page that accepts Markdown, GitHub for example.
Started working on the subject.
If someone interested, here is initial version of html-to-markdown function:
https://gist.github.com/c-smile/0a9c4af0d530fadc0a71904ddbe86ff9
This version fixes three issues:
There are three ways of doing "line feed" in HTML-NOTEPAD:
ENTER – breaks current block into two similar ones:
<p>foo|bar</p>
ENTER in position marked by |
will lead to two paragraphs:
<p>foo</p> <p>bar</p>
CTRL+ENTER – creates sub-paragraph in non-paragraphs: <li>
, <td>
, etc.
<ol> <li>foo|bar</li> </ol>
CTRL+ENTER in that position will lead to:
<ol> <li>foo <p>bar</p> </li> </ol>
SHIFT+ENTER — will just insert <br>
— soft line break.
And just in case, this is how this post was created:
Initial version has been published, please visit Download page.
While it works for me here, consider it as a beta. More features and fixes will be added down the road.