Missing `complete` attribute when exporting

I’ve noticed that the completed argument is correctly imported but not exported.

For example, importing this works:

<?xml version="1.0" encoding="utf-8"?>
<opml version="2.0">
  <head>
    <title></title>
    <flavor>dynalist</flavor>
    <source>https://dynalist.io</source>
  </head>
  <body>
    <outline text="do this" due="2021-01-07" priority="1" complete="true"/>
  </body>
</opml>

But this is what gets exported:

<?xml version="1.0" encoding="UTF-8"?>
<opml version="2.0">
  <head>
    <title>testing</title>
    <dateModified>Fri, 08 Jan 2021 12:18:16 +0000</dateModified>
  </head>
  <body>
    <outline text="do this" due="2021-01-07" priority="1"/>
  </body>
</opml>

Hi,

When exporting, please visit OPML export options in the dialog, and mark “task status” attribute.

Hope this helps,

1 Like

So simple. Don’t know how I missed it. Thanks!

1 Like