Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple attested variable values in LMF #2

Open
kristiank opened this issue Dec 16, 2017 · 0 comments
Open

Multiple attested variable values in LMF #2

kristiank opened this issue Dec 16, 2017 · 0 comments
Milestone

Comments

@kristiank
Copy link
Contributor

Now document order is being relied on for grouping multiple variables together:

<ParadigmPattern>
  <feat att="id" val="asPliittõ"/>
  <feat att="comment" val="inflectional paradigm pattern for pliittõ"/>
  <feat att="example" val="pliittõ riittõ lauttõ"/>
  <feat att="partOfSpeech" val="noun"/>
  <AttestedVariableValues>
    <feat att="1" val="pliit"/>
    <feat att="2" val="õ"/>
    <feat att="1" val="riit"/>
    <feat att="2" val="õ"/>
    <feat att="1" val="laut"/>
    <feat att="2" val="õ"/>
  </AttestedVariableValues>```

Instead they should be semantically organized:
```xml
<ParadigmPattern>
  <feat att="id" val="asPliittõ"/>
  <feat att="comment" val="inflectional paradigm pattern for pliittõ"/>
  <feat att="example" val="pliittõ riittõ lauttõ"/>
  <feat att="partOfSpeech" val="noun"/>
  <AttestedVariables>
    <AttestedVariableValues>
      <feat att="1" val="pliit"/>
      <feat att="2" val="õ"/>
    </AttestedVariableValues>
    <AttestedVariableValues>
      <feat att="1" val="riit"/>
      <feat att="2" val="õ"/>
    </AttestedVariableValues>
    <AttestedVariableValues>
      <feat att="1" val="laut"/>
      <feat att="2" val="õ"/>
    </AttestedVariableValues>
  </AttestedVariables>```
@kristiank kristiank added this to the 1.0 milestone Dec 21, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant