Add Evernote tags to Teedy, Truncate Title and Description to match Teedy limits#13
Open
oz-glenn wants to merge 1 commit into
Open
Add Evernote tags to Teedy, Truncate Title and Description to match Teedy limits#13oz-glenn wants to merge 1 commit into
oz-glenn wants to merge 1 commit into
Conversation
…eedy limits. Change Resty version to 2.7.0.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This relies on tags being Teedy compliant (no spaces or colons). I've created a Python routine to make the tags Teedy compliant by replacing the spaces with underscores, and the colons with a dash at https://github.com/oz-glenn/evernote_tag_converter
The import kept failing with code 200 from Teedy. This was because either Title or Details were too long on some Evernotes. Added code to enforce the limits (length 100 for Titles, 4000 for details) by truncation to the nearest word.
The build failed until I updated resty v2 in go.mod to version 2.7.0.
I'm a lapsed C++ programmer, last programming professionally in the 90s. I've been in an unrelated field since then and this is my first attempt at go. I hope it's elegant enough :)