Jump to content

Web client remove attribute "title"


Recommended Posts

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.

Link to comment
  • Level 5*

Hi.  This is a -mainly- user-supported Forum. Although Evernote staffers do read the posts here, and there are Admins to keep everyone in line,  there's no guarantee when that will be. If you need help on a technical issue,  we can only offer advice from our collective experience. 

Evernote support is available (for subscribers) via the website link, and (for everyone) on Twitter @EvernoteHelps or via their Facebook community.

Link to comment
14 hours ago, gazumped said:

Hi.  This is a -mainly- user-supported Forum. Although Evernote staffers do read the posts here, and there are Admins to keep everyone in line,  there's no guarantee when that will be. If you need help on a technical issue,  we can only offer advice from our collective experience. 

Evernote support is available (for subscribers) via the website link, and (for everyone) on Twitter @EvernoteHelps or via their Facebook community.

Ohh, okay... thanks a lot

  • Like 1
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...