1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE LexicalResource SYSTEM "http://globalwordnet.github.io/schemas/WN-LMF-1.3.dtd">
<!--
WN-LMF 1.3 is the same as 1.1 and 1.2 except for allowing xml:space on
nodes with text content.
-->
<LexicalResource xmlns:dc="https://globalwordnet.github.io/schemas/dc/">
<Lexicon id="test-ws"
label="Testing Whitespace WordNet"
language="en"
email="maintainer@example.com"
license="https://creativecommons.org/licenses/by/4.0/"
version="1"
url="https://example.com/test-whitespace"
logo="logo.svg">
<LexicalEntry id="test-ws-foo">
<Lemma partOfSpeech="n" writtenForm="foo" />
<Sense id="test-ws-foo-1" synset="test-ws-1" />
</LexicalEntry>
<LexicalEntry id="test-ws-bar">
<Lemma partOfSpeech="n" writtenForm="bar" />
<Sense id="test-ws-bar-2" synset="test-ws-2" />
</LexicalEntry>
<LexicalEntry id="test-ws-baz">
<Lemma partOfSpeech="n" writtenForm="baz" />
<Sense id="test-ws-baz-3" synset="test-ws-3" />
</LexicalEntry>
<Synset id="test-ws-1" ili="" partOfSpeech="n">
<Definition>
one
two
three
</Definition>
</Synset>
<Synset id="test-ws-2" ili="" partOfSpeech="n">
<Definition xml:space="default">
one
two
three
</Definition>
</Synset>
<Synset id="test-ws-3" ili="" partOfSpeech="n">
<Definition xml:space="preserve">
one
two
three
</Definition>
</Synset>
</Lexicon>
</LexicalResource>
|