diff --git a/CHANGELOG.md b/CHANGELOG.md index a901b0e..c8f267b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ - Fixed an issue with image paths in some circumstances (thanks @rickdoesdev !) - Added parametersizations for "mixed-kebab" and "mixed_snake" which retain original casing but replace spaces (thanks @NSHenry !) - Also added a special "obsidian-cal" parameterization which is the same as "mixed-kebab" with duplicate `-` removed for additional compatibility with the Obsidian Consistent Attachment Location plugin (thanks @NSHenry !) -- Added lowecase and uppercase options to parameterizations (thanks @redxtech !) +- Added lowercase and uppercase options to parameterizations (thanks @redxtech !) - Updated Turndown to v7.1.3 (thanks @WeHat !) - Updated Readability to v0.5.0 (thanks @WeHat !) - Fixed some issues with code block parsing and formatting (thanks @WeHat !) @@ -44,10 +44,10 @@ ## 3.1.0 - Firefox for Android (nightly) support - Updated Readability and Turndown -- Added GitHub-flavoured Markdown (GFM) plugin to Turndown (adds some mardown table support) +- Added GitHub-flavoured Markdown (GFM) plugin to Turndown (adds some markdown table support) - Added support for MathJax -> LaTeX (thanks @LeLocTai) - Disallow slashes in title text replacements -- Suport for Open Graph meta tags as variables (which use `property` instead of `key`) +- Support for Open Graph meta tags as variables (which use `property` instead of `key`) - Fixed an issue with regex characters like `|` in date formats - Resolved an extra slash in file name causing images to fail to download in chromium browsers - Added some support to parse pre elements as code blocks (supports syntax highlighting on GitHub, but not much else yet) diff --git a/PRIVACY.md b/PRIVACY.md index 9f8e8af..e8d0a33 100644 --- a/PRIVACY.md +++ b/PRIVACY.md @@ -7,7 +7,7 @@ tl;dr: We don't collect anything. Any information we clip from websites remains ## Information Collection and Use This extension reads data on a website you are visiting when you click the button. The URL, metadata and content are clipped and fed -through third-party javascript libraries to transofrm it into the Markdown you see in the preview. +through third-party javascript libraries to transform it into the Markdown you see in the preview. None of this data is collected or sent back to any server. Any files you download or text you copy from the extension remains on your machine and none of it is collected by me. diff --git a/README.md b/README.md index 840a361..d49c176 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ in my hat via the following: - Fixed an issue with image paths in some circumstances (thanks @rickdoesdev !) - Added parametersizations for "mixed-kebab" and "mixed_snake" which retain original casing but replace spaces (thanks @NSHenry !) - Also added a special "obsidian-cal" parameterization which is the same as "mixed-kebab" with duplicate `-` removed for additional compatibility with the Obsidian Consistent Attachment Location plugin (thanks @NSHenry !) -- Added lowecase and uppercase options to parameterizations (thanks @redxtech !) +- Added lowercase and uppercase options to parameterizations (thanks @redxtech !) - Updated Turndown to v7.1.3 (thanks @WeHat !) - Updated Readability to v0.5.0 (thanks @WeHat !) - Fixed some issues with code block parsing and formatting (thanks @WeHat !) diff --git a/src/contentScript/contentScript.js b/src/contentScript/contentScript.js index 0a56afa..1f6fccc 100644 --- a/src/contentScript/contentScript.js +++ b/src/contentScript/contentScript.js @@ -5,10 +5,10 @@ function notifyExtension() { function getHTMLOfDocument() { // make sure a title tag exists so that pageTitle is not empty and - // a filename can be genarated. + // a filename can be generated. if (document.head.getElementsByTagName('title').length == 0) { let titleEl = document.createElement('title'); - // prepate a good default text (the text displayed in the window title) + // prepare a good default text (the text displayed in the window title) titleEl.innerText = document.title; document.head.append(titleEl); } diff --git a/src/options/options.html b/src/options/options.html index c7dae76..4dac55b 100644 --- a/src/options/options.html +++ b/src/options/options.html @@ -52,7 +52,7 @@
{variable:mixed-kebab} - kebab-case: hyphens between words, no case changes{variable:snake} - snake_case: underscores between words, all lowercase{variable:mixed_snake} - snake_case: underscores between words, no case changes{variable:obsidian-cal} - Compatibility for Obsidan Custom Attachment Location: hyphens between words, no case changes, double hypens removed{variable:obsidian-cal} - Compatibility for Obsidan Custom Attachment Location: hyphens between words, no case changes, double hyphens removed