Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jcuenod/ccat-parse
Takes CCAT morph codes and turns them into something meaningful
https://github.com/jcuenod/ccat-parse
Last synced: 3 months ago
JSON representation
Takes CCAT morph codes and turns them into something meaningful
- Host: GitHub
- URL: https://github.com/jcuenod/ccat-parse
- Owner: jcuenod
- Created: 2017-09-30T20:18:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-05T22:23:27.000Z (almost 2 years ago)
- Last Synced: 2024-08-01T16:18:04.387Z (6 months ago)
- Language: JavaScript
- Size: 650 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-bible-developer-resources - CCAT Parse - party tool to interpret CCAT morphology codes. (Biblical Corpora / Greek)
README
# ccat-parse
Takes CCAT morph codes and turns them into something meaningful. (cf. https://github.com/jcuenod/lxxproject). Now available as an npm package:
## Usage
```javascript
const { ccatParse } = require('ccat-parse')
ccatParse("VAI AAI3P")//output:
{ part_of_speech: 'verb',
tense: 'aor',
voice: 'act',
mood: 'ind',
person: '3',
number: 'pl' }
```