Jump to content

BigTows

Level 1
  • Posts

    3
  • Joined

  • Last visited

About BigTows

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

BigTows's Achievements

1

Reputation

  1. Hello, I am using Evernote in my plugin for JetBrains IDEA based and when I generate XML note like this, for uploading: <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE en-note SYSTEM "http://xml.evernote.com/pub/enml2.dtd"> <en-note> <ul> <li title="d2bb5c2b6eb85b538f44925a774a2785242a4779cbb4f242b44778009674f35f"><en-todo/>2 </li> <li title="73466d3046ae47dc0351ab5c70675c746409afdaf82b285989486eed025c2cd7"><en-todo/>3 </li> <li title="8681816ed111255b900e4b351de06be84ff37df86a1dc385c549ca3c6c92a7c9"><en-todo/>2 </li> </ul> </en-note> After loading, I can get an XML note with all the title attributes, but if i add new list ("li" tag) from web-client, and request content of note again, he return note without "title" tag: <!DOCTYPE en-note SYSTEM "http://xml.evernote.com/pub/enml2.dtd"> <en-note> <ul style=""> <li style=""> <div><en-todo checked="false"/>2 </div> </li> <li style=""> <div><en-todo checked="false"/>3 </div> </li> <li style=""> <div><en-todo checked="false"/>2 </div> </li> <li style=""> <div><en-todo checked="false"/>TEST CASE FROM WEB CLIENT </div> </li> </ul> </en-note> Previously I was successfully returned xml note with all "title" tags, when i am changing it in Web client.
×
×
  • Create New...