Hello,

1)

I consider implementing HTML5 Microdata into an HTML export filter
(http://schema.org/CreativeWork,
http://schema.org/http://schema.org/Person,
http://schema.org/Organization).

For example, in the output, an author section should be formatted like this:

<div itemscope itemtype="http://schema.org/Person";>
    <span itemprop="givenName">Usain</span>
    <span itemprop="middleName">St. Leo</span>
    <span itemprop="familyName">Bolt</span>
</div>

Do you know about apropriate Jabref Export formatting techniques?

I cannot find a custom export formatter for the author/editor field
which enables me to add custom text ("<span itemprop=..." etc) before
and after given, last and middle names.

A workaround I thought about was using the CreateDocBookAuthors
formatter, which produces output like this:

<author><firstname>John M.</firstname><surname>Steele</surname></author>
<author><firstname>Lis</firstname><surname>Brack&#45;Bernsen</surname></author>

Then I could use the Replace formatter to replace the docbook tags to
corresponding HTML5 tags with Microdata attributes.

2.)

Does anyone know about a export technique to implement zotero-friendly
COins (http://en.wikipedia.org/wiki/COinS, http://ocoins.info/cobg.html)?

The output should look like this:

<span class="Z3988"

title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&<key1>=<value1>&<key2>=<value2>&...&<key2>=<value2>
">
</span>

Problem is, in <valueX>, special characters need to be percent-encoded:

<space> --> %20
# --> %23
% --> %25
& --> %26
+ --> %2B
/ --> %2F
< --> %3C
= --> %3D
> --> %3E
? --> %3F
: --> %3A
é --> %C3%A9
ü --> %C3%BC
etc

Can you help me to find out how to accomplish this?

Greetings,
Alex

------------------------------------------------------------------------------
_______________________________________________
Jabref-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jabref-users

Reply via email to