xsf / xeps

Hosts the markup for all XMPP Protocol Extensions.
https://xmpp.org/extensions/
Other
126 stars 118 forks source link

Fix metadata conversion in markdown scripts #1259

Closed Zash closed 1 year ago

Zash commented 1 year ago

E.g. lastcall can exist more than once according to the schema, but only one item was kept by xep2md.

Before:

lastcall: 2017-11-15

After:

lastcall:
- 2021-03-30
- 2017-11-15

In 2xep an extra wrapper element was added

<lastcall>
<lastcall>2017-11-15</lastcall>
</lastcall>

Correct is one element with text for each item

<lastcall>2017-11-15</lastcall>