Hi! First of all thanks for all your time and work invested in developing and supporting this plugin! I was having trouble making it work and after a while I found out why it wasn't working. I looked at the plugin's code and found that inside "ParseKindleMyClippingsTxt.py" under "_LANG_AND_KIND_DETECT_BY_START_WORDS = {" there is:
"Mi subrayado": ('es', 'highlight'),
"Mi nota": ('es', 'note'),
"Mi marcador": ('es', 'bookmark'),
and should be, at least for this device (I noticed this looking at "My Clippings.txt"):
"Tu subrayado": ('es', 'highlight'),
"Tu nota": ('es', 'note'),
"Tu marcador": ('es', 'bookmark'),
and got that working: the plugin detected notes, highlights and bookmarks.
Then I encountered another problem, it could not detect the position correctly.
So I kept looking at the "ParseKindleMyClippingsTxt.py" file, and found that
under "_LOCATION_REGEX = {" was:
'es': (r"\sPosición\s*%s",),
and should be (notice the lowercase):
'es': (r"\sposición\s*%s",),
And now its working perfectly! I hope this helps others with the same problem
