diff --git a/CHANGELOG.md b/CHANGELOG.md index 659675e..cdecbbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v0.1.4 - 02/23/2021 + +* Support loading custom CSS for HTML preview + * Configure with `texinfo.preview.customCSS` +* Update dependencies + * Not updating `node-html-parser` to v3.0+, as it bloats the webpack-ed code significantly :( + ## v0.1.3 - 02/09/2021 * Fix completion of block command `@detailmenu`. diff --git a/README.md b/README.md index dce2d32..92cc008 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ Texinfo language support for Visual Studio Code. * Completion and code snippets for most @\-commands. * **Preview** * Display HTML preview in a webview. + * Support loading custom CSS for preview. * Texinfo to HTML conversion is provided by [GNU Texinfo](https://www.gnu.org/software/texinfo). * **Folding** * Fold on nodes, block commands and multiline comments. @@ -55,6 +56,10 @@ See `File -> Preferences -> Settings -> Extensions -> Texinfo` for details. The * Preview content is updated on document save rather than document change, as Texinfo documents tend to be rather large, and incremental conversion is not yet supported. * For macOS users: Preinstalled GNU Texinfo distribution is very old. Use a latest one instead. This can be easily done by `brew install texinfo` and change extension setting `texinfo.makeinfo` value. +## Contributing + +Send an email to [bug-report@cismon.net](mailto:bug-report@cismon.net) to report bugs or submit patches. + ## Future Plans * Implement [Language Server Protocol](https://microsoft.github.io/language-server-protocol) for the Texinfo language, preferably by extending GNU Texinfo, to alleviate the limitations of the current implementaion. diff --git a/package-lock.json b/package-lock.json index 3a83c9e..3a5a065 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "texinfo", - "version": "0.1.3", + "version": "0.1.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index ce4e519..4d3ad7e 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Texinfo Language Support", "description": "Provides basic editing experience for Texinfo documents, including syntax highlighting, code completion, HTML preview, etc.", "publisher": "cismonx", - "version": "0.1.3", + "version": "0.1.4", "author": { "name": "CismonX", "email": "admin@cismon.net",