Skip to content

Commit

Permalink
feat: notes decryption supported (#581)
Browse files Browse the repository at this point in the history
  • Loading branch information
akosbalasko authored Jan 13, 2024
1 parent 1a1aa43 commit c67e524
Show file tree
Hide file tree
Showing 18 changed files with 198 additions and 40 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ To configure Yarle, you must create a config file. By default it looks like this
"addExtensionToInternalLinks": true,
"trimStartingTabs": false,
"convertPlainHtmlNewlines": false,
"encryptionPasswords": [],
"nestedTags": {
"separatorInEN": "_",
"replaceSeparatorWith": "/",
Expand Down Expand Up @@ -208,6 +209,7 @@ The following configurational properties are available:
| ```obsidianTaskTag``` | string | a tag to put to a task converted from Evernote v10+ tasks. Optional by Obsidian Tasks plugin, pls check the details there.
| ```trimStartingTabs``` | true or false | Removes the tab characters from the beginning of every line in a note. It is meaningful, because Obsidian recognizes tabs as codeblocks by default and blocks recognition of links (for instance) in the line
| ```convertPlainHtmlNewlines``` | true or false | Yarle converts newline html tags to newlines, even if they are within Evernote paragraphs.
| ```encryptionPasswords``` | string | list of passwords used in any notes, separated by commas
|```useUniqueUnknownFileNames``` | boolean | generates a couple of random characters at the end of the resource file names if the exact name cannot be recognised. For instance: unknown_filename-d2fd86c3.pdf
|```useLevenshteinForLinks```| boolean| it applies the link to the note with the filename that has the closest Levenshtein distance to the text of the link
Metadata settings can be set via the template.
Expand Down
1 change: 1 addition & 0 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"skipCreationTime": false,
"trimStartingTabs": false,
"convertPlainHtmlNewlines": false,
"encryptionPasswords": [],
"skipUpdateTime": false,
"skipSourceUrl": false,
"skipWebClips": false,
Expand Down
1 change: 1 addition & 0 deletions config.logseq.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"skipCreationTime": false,
"trimStartingTabs": false,
"convertPlainHtmlNewlines": false,
"encryptionPasswords": [],
"dateFormat": "YYYY-MM-DD",
"skipUpdateTime": true,
"skipSourceUrl": true,
Expand Down
1 change: 1 addition & 0 deletions config.tana.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"skipCreationTime": false,
"trimStartingTabs": false,
"convertPlainHtmlNewlines": false,
"encryptionPasswords": [],
"skipUpdateTime": false,
"skipSourceUrl": false,
"skipWebClips": false,
Expand Down
Loading

0 comments on commit c67e524

Please sign in to comment.