robots.txt
This commit is contained in:
parent
773ae85002
commit
4895cdfb5d
|
@ -1,3 +1,3 @@
|
|||
# https://www.robotstxt.org/robotstxt.html
|
||||
User-agent: *
|
||||
Disallow:
|
||||
Allow: /
|
||||
|
|
|
@ -31,7 +31,11 @@ function ParserDemo({ opts }: { opts: T.TextOptions }) {
|
|||
}
|
||||
return (
|
||||
<div className="mt-3" style={{ marginBottom: "1000px" }}>
|
||||
<p>Type an NP or full kernel verb phrase (not fully working!)</p>
|
||||
<div>Type a sentence to parse</div>
|
||||
<div className="small text-muted">
|
||||
(IN PROGRESS: limited vocab and not working for APs, compound verbs, or
|
||||
grammatically transitive verbs allowed... yet)
|
||||
</div>
|
||||
<div className="form-group mb-2">
|
||||
<input
|
||||
dir="rtl"
|
||||
|
|
|
@ -10,10 +10,23 @@ import { makePronounSelection } from "../phrase-building/make-selections";
|
|||
import { isFirstOrSecondPersPronoun } from "../phrase-building/render-vp";
|
||||
// to hide equatives type-doubling issue
|
||||
|
||||
// demo
|
||||
|
||||
// ماشوم
|
||||
// ماشومان
|
||||
// خوږ
|
||||
// masc plur
|
||||
|
||||
// past tense
|
||||
// ماشومانو ښځه ولیدله
|
||||
// ماشومانو ښځه ولیدله
|
||||
|
||||
// cool examples:
|
||||
// زه خوږې ماشومې وهم
|
||||
// ماشومان سړي ولیدل
|
||||
// ماشومانو سړي ولیدل
|
||||
// زه ماشوم وهم
|
||||
// وهلم // خواږه
|
||||
|
||||
// ومې لیدې
|
||||
// ویې وهم
|
||||
|
||||
// map over transitivities, to give transitive / gramm. transitive optionns
|
||||
|
||||
|
|
Loading…
Reference in New Issue