hebrew-transliteration 2.10.2 → 2.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,7 +1,8 @@
1
1
  export { Text } from "havarotjs";
2
2
  export { remove } from "./remove.js";
3
3
  export type { RemoveOptions } from "./remove.js";
4
- export { SBL, Schema } from "./schema.js";
4
+ export { Schema } from "./schema.js";
5
5
  export type { ClusterCallback, ClusterFeature, HebrewFeature, PassThrough, SyllableCallback, SyllableFeature, SylOpts, WordCallback, WordFeature } from "./schema.js";
6
+ export { SBL } from "./schemas/index.js";
6
7
  export { sequence } from "./sequence.js";
7
8
  export { transliterate } from "./transliterate.js";
package/dist/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export { Text } from "havarotjs";
2
2
  export { remove } from "./remove.js";
3
- export { SBL, Schema } from "./schema.js";
3
+ export { Schema } from "./schema.js";
4
+ export { SBL } from "./schemas/index.js";
4
5
  export { sequence } from "./sequence.js";
5
6
  export { transliterate } from "./transliterate.js";
6
7
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAErC,OAAO,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAY1C,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAErC,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAYrC,OAAO,EAAE,GAAG,EAAE,MAAM,oBAAoB,CAAC;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC"}
package/dist/schema.d.ts CHANGED
@@ -4,6 +4,44 @@ import type { SylOpts, Text } from "havarotjs/text";
4
4
  import type { VowelNameToCharMap } from "havarotjs/utils/charMap";
5
5
  import type { Word } from "havarotjs/word";
6
6
  export type { SylOpts };
7
+ export interface FeatureMetaData {
8
+ /**
9
+ * The title of the feature.
10
+ *
11
+ * @example
12
+ *
13
+ * ```js
14
+ * transliterate("וְאֵ֥ת הָאָֽרֶץ", {
15
+ * ADDITIONAL_FEATURES: [{
16
+ * TITLE: "Transliterate 'The Earth' as a whole word",
17
+ * DESCRIPTION: "Transliterate 'The Earth' as a whole word rather than individual characters. Just an example.",
18
+ * FEATURE: "word",
19
+ * HEBREW: "הָאָרֶץ",
20
+ * TRANSLITERATION: "The Earth"
21
+ * }]
22
+ * });
23
+ * ```
24
+ */
25
+ TITLE?: string;
26
+ /**
27
+ * The description of the feature.
28
+ *
29
+ * @example
30
+ *
31
+ * ```js
32
+ * transliterate("וְאֵ֥ת הָאָֽרֶץ", {
33
+ * ADDITIONAL_FEATURES: [{
34
+ * TITLE: "Transliterate 'The Earth' as a whole word",
35
+ * DESCRIPTION: "Transliterate 'The Earth' as a whole word rather than individual characters. Just an example.",
36
+ * FEATURE: "word",
37
+ * HEBREW: "הָאָרֶץ",
38
+ * TRANSLITERATION: "The Earth"
39
+ * }]
40
+ * });
41
+ * ```
42
+ */
43
+ DESCRIPTION?: string;
44
+ }
7
45
  export interface HebrewFeature {
8
46
  /**
9
47
  * The Hebrew text — use consonants and vowels; do not use taamim
@@ -82,7 +120,7 @@ export interface PassThrough {
82
120
  * @param schema the `Schema` being used
83
121
  */
84
122
  export type WordCallback = (word: Word, hebrew: string | RegExp, schema: Schema) => string;
85
- export interface WordFeature extends HebrewFeature, PassThrough {
123
+ export interface WordFeature extends FeatureMetaData, HebrewFeature, PassThrough {
86
124
  /**
87
125
  * Additional orthographic feature.
88
126
  *
@@ -141,7 +179,7 @@ export interface WordFeature extends HebrewFeature, PassThrough {
141
179
  * @param schema the `Schema` being used
142
180
  */
143
181
  export type SyllableCallback = (syllable: Syllable, hebrew: string | RegExp, schema: Schema) => string;
144
- export interface SyllableFeature extends HebrewFeature, PassThrough {
182
+ export interface SyllableFeature extends FeatureMetaData, HebrewFeature, PassThrough {
145
183
  /**
146
184
  * Additional orthographic feature:
147
185
  *
@@ -198,7 +236,7 @@ export interface SyllableFeature extends HebrewFeature, PassThrough {
198
236
  * @param schema the `Schema` being used
199
237
  */
200
238
  export type ClusterCallback = (cluster: Cluster, hebrew: string | RegExp, schema: Schema) => string;
201
- export interface ClusterFeature extends HebrewFeature, PassThrough {
239
+ export interface ClusterFeature extends FeatureMetaData, HebrewFeature, PassThrough {
202
240
  /**
203
241
  * Additional orthographic feature.
204
242
  *
@@ -1858,246 +1896,3 @@ export declare class Schema implements SylOpts, SchemaVowels {
1858
1896
  /**@category Constructors */
1859
1897
  constructor(schema: Schema);
1860
1898
  }
1861
- /**
1862
- * The default schema according to SBL's academic style guide.
1863
- *
1864
- * Whereas a new {@link Schema} must have all required properties when constructed,
1865
- * this schema is meant to be used as a default so particular properties can be overidden (see example).
1866
- *
1867
- * If the property is not set, the default value will be used. Each property is documented below with their default values.
1868
- *
1869
- * Click into each property's "Overrides" for more information about that property.
1870
- *
1871
- * @param schema a {@link Schema | Partial\<Schema\>}
1872
- *
1873
- * @example
1874
- * Extend the default schema
1875
- * ```js
1876
- * transliterate("שָׁלוֹם", { SHIN: "sh" });
1877
- * // shālôm
1878
- * ```
1879
- *
1880
- * @privateRemarks
1881
- * In order for documentation output to be the way I wanted, the properties are all redefined with their type from the Schema.
1882
- * This is not necessary for the implementation, just the docs.
1883
- */
1884
- export declare class SBL extends Schema {
1885
- /** @category Vowels @default "ə" */
1886
- VOCAL_SHEVA: Schema["VOCAL_SHEVA"];
1887
- /** @category Vowels @default "ĕ" */
1888
- HATAF_SEGOL: Schema["HATAF_SEGOL"];
1889
- /** @category Vowels @default "ă" */
1890
- HATAF_PATAH: Schema["HATAF_PATAH"];
1891
- /** @category Vowels @default "ŏ" */
1892
- HATAF_QAMATS: Schema["HATAF_QAMATS"];
1893
- /** @category Vowels @default "i" */
1894
- HIRIQ: Schema["HIRIQ"];
1895
- /** @category Vowels @default "ē" */
1896
- TSERE: Schema["TSERE"];
1897
- /** @category Vowels @default "e" */
1898
- SEGOL: Schema["SEGOL"];
1899
- /** @category Vowels @default "a" */
1900
- PATAH: Schema["PATAH"];
1901
- /** @category Vowels @default "ā" */
1902
- QAMATS: Schema["QAMATS"];
1903
- /** @category Vowels @default "ō" */
1904
- HOLAM: Schema["HOLAM"];
1905
- /** @category Vowels @default "ō" */
1906
- HOLAM_HASER: Schema["HOLAM_HASER"];
1907
- /** @category Vowels @default "ū" */
1908
- QUBUTS: Schema["QUBUTS"];
1909
- /** @category Marks @default "" */
1910
- DAGESH: Schema["DAGESH"];
1911
- /** @category Marks @category Orthographic Features @default true */
1912
- DAGESH_CHAZAQ: Schema["DAGESH_CHAZAQ"];
1913
- /** @category Marks @category Taamim @default "-" */
1914
- MAQAF: Schema["MAQAF"];
1915
- /** @category Marks @default "" */
1916
- PASEQ: Schema["PASEQ"];
1917
- /** @category Marks @category Taamim @default "" */
1918
- SOF_PASUQ: Schema["SOF_PASUQ"];
1919
- /** @category Vowels @default "o" */
1920
- QAMATS_QATAN: Schema["QAMATS_QATAN"];
1921
- /** @category Vowels @category Orthographic Features @default "a" */
1922
- FURTIVE_PATAH: Schema["FURTIVE_PATAH"];
1923
- /** @category Vowels @category Orthographic Features @default "î" */
1924
- HIRIQ_YOD: Schema["HIRIQ_YOD"];
1925
- /** @category Vowels @category Orthographic Features @default "ê" */
1926
- TSERE_YOD: Schema["TSERE_YOD"];
1927
- /** @category Vowels @category Orthographic Features @default "ê" */
1928
- SEGOL_YOD: Schema["SEGOL_YOD"];
1929
- /** @category Vowels @category Orthographic Features @default "û" */
1930
- SHUREQ: Schema["SHUREQ"];
1931
- /** @category Vowels @category Orthographic Features @default "ô" */
1932
- HOLAM_VAV: Schema["HOLAM_VAV"];
1933
- /** @category Vowels @category Orthographic Features @default "â" */
1934
- QAMATS_HE: Schema["QAMATS_HE"];
1935
- /** @category Vowels @category Orthographic Features @default undefined */
1936
- PATAH_HE: Schema["PATAH_HE"];
1937
- /** @category Vowels @category Orthographic Features @default undefined */
1938
- SEGOL_HE: Schema["SEGOL_HE"];
1939
- /** @category Vowels @category Orthographic Features @default undefined */
1940
- TSERE_HE: Schema["TSERE_HE"];
1941
- /** @category Vowel @category Orthographic Features @default "āyw" */
1942
- MS_SUFX: Schema["MS_SUFX"];
1943
- /** @category Consonants @default "ʾ" */
1944
- ALEF: Schema["ALEF"];
1945
- /** @category Consonants @default "b" */
1946
- BET: Schema["BET"];
1947
- /** @category Consonants @category Orthographic Features @default undefined */
1948
- BET_DAGESH: Schema["BET_DAGESH"];
1949
- /** @category Consonants @default "g" */
1950
- GIMEL: Schema["GIMEL"];
1951
- /** @category Consonants @category Orthographic Features @default undefined */
1952
- GIMEL_DAGESH: Schema["GIMEL_DAGESH"];
1953
- /** @category Consonants @default "d" */
1954
- DALET: Schema["DALET"];
1955
- /** @category Consonants @category Orthographic Features @default undefined */
1956
- DALET_DAGESH: Schema["DALET_DAGESH"];
1957
- /** @category Consonants @default "h" */
1958
- HE: Schema["HE"];
1959
- /** @category Consonants @default "w" */
1960
- VAV: Schema["VAV"];
1961
- /** @category Consonants @default "z" */
1962
- ZAYIN: Schema["ZAYIN"];
1963
- /** @category Consonants @default "ḥ" */
1964
- HET: Schema["HET"];
1965
- /** @category Consonants @default "ṭ" */
1966
- TET: Schema["TET"];
1967
- /** @category Consonants @default "y" */
1968
- YOD: Schema["YOD"];
1969
- /** @category Consonants @default "k" */
1970
- FINAL_KAF: Schema["FINAL_KAF"];
1971
- /** @category Consonants @default "k" */
1972
- KAF: Schema["KAF"];
1973
- /** @category Consonants @category Orthographic Features @default undefined */
1974
- KAF_DAGESH: Schema["KAF_DAGESH"];
1975
- /** @category Consonants @default "l" */
1976
- LAMED: Schema["LAMED"];
1977
- /** @category Consonants @default "m" */
1978
- FINAL_MEM: Schema["FINAL_MEM"];
1979
- /** @category Consonants @default "m" */
1980
- MEM: Schema["MEM"];
1981
- /** @category Consonants @default "n" */
1982
- FINAL_NUN: Schema["FINAL_NUN"];
1983
- /** @category Consonants @default "n" */
1984
- NUN: Schema["NUN"];
1985
- /** @category Consonants @default "s" */
1986
- SAMEKH: Schema["SAMEKH"];
1987
- /** @category Consonants @default "ʿ" */
1988
- AYIN: Schema["AYIN"];
1989
- /** @category Consonants @default "p" */
1990
- FINAL_PE: Schema["FINAL_PE"];
1991
- /** @category Consonants @default "p" */
1992
- PE: Schema["PE"];
1993
- /** @category Consonants @category Orthographic Features @default undefined */
1994
- PE_DAGESH: Schema["PE_DAGESH"];
1995
- /** @category Consonants @default "ṣ" */
1996
- FINAL_TSADI: Schema["FINAL_TSADI"];
1997
- /** @category Consonants @default "ṣ" */
1998
- TSADI: Schema["TSADI"];
1999
- /** @category Consonants @default "q" */
2000
- QOF: Schema["QOF"];
2001
- /** @category Consonants @default "r" */
2002
- RESH: Schema["RESH"];
2003
- /** @category Consonants @category Orthographic Features @default "š" */
2004
- SHIN: Schema["SHIN"];
2005
- /** @category Consonants @category Orthographic Features @default "ś" */
2006
- SIN: Schema["SIN"];
2007
- /** @category Consonants @default "t" */
2008
- TAV: Schema["TAV"];
2009
- /** @category Consonants @category Orthographic Features @default undefined */
2010
- TAV_DAGESH: Schema["TAV_DAGESH"];
2011
- /** @category Orthographic Features @default "yhwh" */
2012
- DIVINE_NAME: Schema["DIVINE_NAME"];
2013
- /** @category Orthographic Features @default undefined */
2014
- DIVINE_NAME_ELOHIM: Schema["DIVINE_NAME_ELOHIM"];
2015
- /** @category Orthographic Features @default undefined */
2016
- SYLLABLE_SEPARATOR: Schema["SYLLABLE_SEPARATOR"];
2017
- /**
2018
- * @category Orthographic Features
2019
- * @default
2020
- * ```js
2021
- * [
2022
- * {
2023
- * FEATURE: "syllable",
2024
- * HEBREW: /[\u{05B4}\u{05BB}]/u,
2025
- * TRANSLITERATION: (syllable, heb, schema) => {
2026
- * // matches any syllable with a hiriq or qubuts,
2027
- * // and checks for a "long" vowel (i.e a hiriq or qubuts in an accented syllable without a mater)
2028
- * const hasMater = syllable.clusters.some((cluster) => cluster.isMater);
2029
- * if (syllable.isAccented && !hasMater) {
2030
- * const macron = "\u0304";
2031
- * const output = syllable.hasVowelName("HIRIQ") ? schema["HIRIQ"] + macron : schema["QUBUTS"] + macron;
2032
- * return syllable.text.replace(heb, output.normalize("NFC"));
2033
- * }
2034
- * return syllable.text;
2035
- * }
2036
- * },
2037
- * {
2038
- * FEATURE: "syllable",
2039
- * HEBREW: "\u{05BC}",
2040
- * TRANSLITERATION: (syllable, heb) => {
2041
- * // matches any word with a dagesh,
2042
- * // and checks for a euphonic dagesh
2043
- * const currWord = syllable?.word?.value;
2044
- * const prevWord = currWord?.prev?.value;
2045
- * if (!currWord || !prevWord || !prevWord.isInConstruct) {
2046
- * return syllable.text;
2047
- * }
2048
- *
2049
- * if (syllable.prev) {
2050
- * return syllable.text;
2051
- * }
2052
- *
2053
- * return syllable.text.replace(heb, "");
2054
- * }
2055
- * }
2056
- * ]
2057
- * ```
2058
- *
2059
- * @example
2060
- * Extending SBL with a new feature and keeping the default features
2061
- * ```js
2062
- * import { SBL, transliterate } from "hebrew-transliteration";
2063
- *
2064
- * const sbl = new SBL();
2065
- * const oldFeatures = sbl.ADDITIONAL_FEATURES;
2066
- * const newFeature = {
2067
- * FEATURE: "word",
2068
- * HEBREW: "הָאָרֶץ",
2069
- * TRANSLITERATION: "The Earth"
2070
- * }
2071
- *
2072
- * transliterate("הָאָרֶץ", {
2073
- * ADDITIONAL_FEATURES: [...oldFeatures, newFeature],
2074
- * });
2075
- * ```
2076
- */
2077
- ADDITIONAL_FEATURES: Schema["ADDITIONAL_FEATURES"];
2078
- /** @category Orthographic Features @default undefined */
2079
- STRESS_MARKER: Schema["STRESS_MARKER"];
2080
- /** @category Syllabification @default true */
2081
- longVowels: Schema["longVowels"];
2082
- /** @category Syllabification @default true */
2083
- qametsQatan: Schema["qametsQatan"];
2084
- /** @category Syllabification @default true */
2085
- shevaAfterMeteg: Schema["shevaAfterMeteg"];
2086
- /** @category Syllabification @default false */
2087
- shevaWithMeteg: Schema["shevaWithMeteg"];
2088
- /** @category Syllabification @default true */
2089
- sqnmlvy: Schema["sqnmlvy"];
2090
- /** @category Syllabification @default true */
2091
- wawShureq: Schema["wawShureq"];
2092
- /** @category Syllabification @default true */
2093
- article: Schema["article"];
2094
- /** @category Syllabification @default true */
2095
- allowNoNiqqud: Schema["allowNoNiqqud"];
2096
- /** @category Syllabification @default false */
2097
- strict: Schema["strict"];
2098
- /** @category Syllabification @default "remove" */
2099
- holemHaser: Schema["holemHaser"];
2100
- /** @category Syllabification @default undefined */
2101
- ketivQeres: Schema["ketivQeres"];
2102
- constructor(schema: Partial<Schema>);
2103
- }
package/dist/schema.js CHANGED
@@ -1615,225 +1615,4 @@ export class Schema {
1615
1615
  this.ketivQeres = schema.ketivQeres;
1616
1616
  }
1617
1617
  }
1618
- /**
1619
- * The default schema according to SBL's academic style guide.
1620
- *
1621
- * Whereas a new {@link Schema} must have all required properties when constructed,
1622
- * this schema is meant to be used as a default so particular properties can be overidden (see example).
1623
- *
1624
- * If the property is not set, the default value will be used. Each property is documented below with their default values.
1625
- *
1626
- * Click into each property's "Overrides" for more information about that property.
1627
- *
1628
- * @param schema a {@link Schema | Partial\<Schema\>}
1629
- *
1630
- * @example
1631
- * Extend the default schema
1632
- * ```js
1633
- * transliterate("שָׁלוֹם", { SHIN: "sh" });
1634
- * // shālôm
1635
- * ```
1636
- *
1637
- * @privateRemarks
1638
- * In order for documentation output to be the way I wanted, the properties are all redefined with their type from the Schema.
1639
- * This is not necessary for the implementation, just the docs.
1640
- */
1641
- export class SBL extends Schema {
1642
- constructor(schema) {
1643
- super({
1644
- VOCAL_SHEVA: schema.VOCAL_SHEVA ?? "ə",
1645
- HATAF_SEGOL: schema.HATAF_SEGOL ?? "ĕ",
1646
- HATAF_PATAH: schema.HATAF_PATAH ?? "ă",
1647
- HATAF_QAMATS: schema.HATAF_QAMATS ?? "ŏ",
1648
- HIRIQ: schema.HIRIQ ?? "i",
1649
- TSERE: schema.TSERE ?? "ē",
1650
- SEGOL: schema.SEGOL ?? "e",
1651
- PATAH: schema.PATAH ?? "a",
1652
- QAMATS: schema.QAMATS ?? "ā",
1653
- HOLAM: schema.HOLAM ?? "ō",
1654
- HOLAM_HASER: schema.HOLAM_HASER ?? "ō",
1655
- QUBUTS: schema.QUBUTS ?? "u",
1656
- DAGESH: schema.DAGESH ?? "",
1657
- DAGESH_CHAZAQ: schema.DAGESH_CHAZAQ ?? true,
1658
- MAQAF: schema.MAQAF ?? "-",
1659
- PASEQ: schema.PASEQ ?? "",
1660
- SOF_PASUQ: schema.SOF_PASUQ ?? "",
1661
- QAMATS_QATAN: schema.QAMATS_QATAN ?? "o",
1662
- FURTIVE_PATAH: schema.FURTIVE_PATAH ?? "a",
1663
- HIRIQ_YOD: schema.HIRIQ_YOD ?? "î",
1664
- TSERE_YOD: schema.TSERE_YOD ?? "ê",
1665
- SEGOL_YOD: schema.SEGOL_YOD ?? "ê",
1666
- SHUREQ: schema.SHUREQ ?? "û",
1667
- HOLAM_VAV: schema.HOLAM_VAV ?? "ô",
1668
- QAMATS_HE: schema.QAMATS_HE ?? "â",
1669
- PATAH_HE: schema.PATAH_HE ?? undefined,
1670
- SEGOL_HE: schema.SEGOL_HE ?? undefined,
1671
- TSERE_HE: schema.TSERE_HE ?? undefined,
1672
- MS_SUFX: schema.MS_SUFX ?? "āyw",
1673
- ALEF: schema.ALEF ?? "ʾ",
1674
- BET: schema.BET ?? "b",
1675
- BET_DAGESH: schema.BET_DAGESH ?? undefined,
1676
- GIMEL: schema.GIMEL ?? "g",
1677
- GIMEL_DAGESH: schema.GIMEL_DAGESH ?? undefined,
1678
- DALET: schema.DALET ?? "d",
1679
- DALET_DAGESH: schema.DALET_DAGESH ?? undefined,
1680
- HE: schema.HE ?? "h",
1681
- VAV: schema.VAV ?? "w",
1682
- ZAYIN: schema.ZAYIN ?? "z",
1683
- HET: schema.HET ?? "ḥ",
1684
- TET: schema.TET ?? "ṭ",
1685
- YOD: schema.YOD ?? "y",
1686
- FINAL_KAF: schema.FINAL_KAF ?? "k",
1687
- KAF: schema.KAF ?? "k",
1688
- KAF_DAGESH: schema.KAF_DAGESH ?? undefined,
1689
- LAMED: schema.LAMED ?? "l",
1690
- FINAL_MEM: schema.FINAL_MEM ?? "m",
1691
- MEM: schema.MEM ?? "m",
1692
- FINAL_NUN: schema.FINAL_NUN ?? "n",
1693
- NUN: schema.NUN ?? "n",
1694
- SAMEKH: schema.SAMEKH ?? "s",
1695
- AYIN: schema.AYIN ?? "ʿ",
1696
- FINAL_PE: schema.FINAL_PE ?? "p",
1697
- PE: schema.PE ?? "p",
1698
- PE_DAGESH: schema.PE_DAGESH ?? undefined,
1699
- FINAL_TSADI: schema.FINAL_TSADI ?? "ṣ",
1700
- TSADI: schema.TSADI ?? "ṣ",
1701
- QOF: schema.QOF ?? "q",
1702
- RESH: schema.RESH ?? "r",
1703
- SHIN: schema.SHIN ?? "š",
1704
- SIN: schema.SIN ?? "ś",
1705
- TAV: schema.TAV ?? "t",
1706
- TAV_DAGESH: schema.TAV_DAGESH ?? undefined,
1707
- DIVINE_NAME: schema.DIVINE_NAME ?? "yhwh",
1708
- DIVINE_NAME_ELOHIM: schema.DIVINE_NAME_ELOHIM ?? undefined,
1709
- SYLLABLE_SEPARATOR: schema.SYLLABLE_SEPARATOR ?? undefined,
1710
- ADDITIONAL_FEATURES: schema.ADDITIONAL_FEATURES ?? undefined,
1711
- STRESS_MARKER: schema.STRESS_MARKER ?? undefined,
1712
- ON_COMPLETE: schema.ON_COMPLETE ?? undefined,
1713
- longVowels: schema.longVowels ?? true,
1714
- qametsQatan: schema.qametsQatan ?? true,
1715
- shevaAfterMeteg: schema.shevaAfterMeteg ?? true,
1716
- shevaWithMeteg: schema.shevaWithMeteg ?? false,
1717
- sqnmlvy: schema.sqnmlvy ?? true,
1718
- wawShureq: schema.wawShureq ?? true,
1719
- article: schema.article ?? true,
1720
- allowNoNiqqud: schema.allowNoNiqqud ?? true,
1721
- strict: schema.strict ?? false,
1722
- holemHaser: schema.holemHaser || "remove",
1723
- ketivQeres: schema.ketivQeres || undefined
1724
- });
1725
- this.VOCAL_SHEVA = schema.VOCAL_SHEVA ?? "ə";
1726
- this.HATAF_SEGOL = schema.HATAF_SEGOL ?? "ĕ";
1727
- this.HATAF_PATAH = schema.HATAF_PATAH ?? "ă";
1728
- this.HATAF_QAMATS = schema.HATAF_QAMATS ?? "ŏ";
1729
- this.HIRIQ = schema.HIRIQ ?? "i";
1730
- this.TSERE = schema.TSERE ?? "ē";
1731
- this.SEGOL = schema.SEGOL ?? "e";
1732
- this.PATAH = schema.PATAH ?? "a";
1733
- this.QAMATS = schema.QAMATS ?? "ā";
1734
- this.HOLAM = schema.HOLAM ?? "ō";
1735
- this.HOLAM_HASER = schema.HOLAM_HASER ?? "ō";
1736
- this.QUBUTS = schema.QUBUTS ?? "u";
1737
- this.DAGESH = schema.DAGESH ?? "";
1738
- this.DAGESH_CHAZAQ = schema.DAGESH_CHAZAQ ?? true;
1739
- this.MAQAF = schema.MAQAF ?? "-";
1740
- this.PASEQ = schema.PASEQ ?? "";
1741
- this.SOF_PASUQ = schema.SOF_PASUQ ?? "";
1742
- this.QAMATS_QATAN = schema.QAMATS_QATAN ?? "o";
1743
- this.FURTIVE_PATAH = schema.FURTIVE_PATAH ?? "a";
1744
- this.HIRIQ_YOD = schema.HIRIQ_YOD ?? "î";
1745
- this.TSERE_YOD = schema.TSERE_YOD ?? "ê";
1746
- this.SEGOL_YOD = schema.SEGOL_YOD ?? "ê";
1747
- this.SHUREQ = schema.SHUREQ ?? "û";
1748
- this.HOLAM_VAV = schema.HOLAM_VAV ?? "ô";
1749
- this.QAMATS_HE = schema.QAMATS_HE ?? "â";
1750
- this.PATAH_HE = schema.PATAH_HE ?? undefined;
1751
- this.SEGOL_HE = schema.SEGOL_HE ?? undefined;
1752
- this.TSERE_HE = schema.TSERE_HE ?? undefined;
1753
- this.MS_SUFX = schema.MS_SUFX ?? "āyw";
1754
- this.ALEF = schema.ALEF ?? "ʾ";
1755
- this.BET = schema.BET ?? "b";
1756
- this.BET_DAGESH = schema.BET_DAGESH ?? undefined;
1757
- this.GIMEL = schema.GIMEL ?? "g";
1758
- this.GIMEL_DAGESH = schema.GIMEL_DAGESH ?? undefined;
1759
- this.DALET = schema.DALET ?? "d";
1760
- this.DALET_DAGESH = schema.DALET_DAGESH ?? undefined;
1761
- this.HE = schema.HE ?? "h";
1762
- this.VAV = schema.VAV ?? "w";
1763
- this.ZAYIN = schema.ZAYIN ?? "z";
1764
- this.HET = schema.HET ?? "ḥ";
1765
- this.TET = schema.TET ?? "ṭ";
1766
- this.YOD = schema.YOD ?? "y";
1767
- this.FINAL_KAF = schema.FINAL_KAF ?? "k";
1768
- this.KAF = schema.KAF ?? "k";
1769
- this.KAF_DAGESH = schema.KAF_DAGESH ?? undefined;
1770
- this.LAMED = schema.LAMED ?? "l";
1771
- this.FINAL_MEM = schema.FINAL_MEM ?? "m";
1772
- this.MEM = schema.MEM ?? "m";
1773
- this.FINAL_NUN = schema.FINAL_NUN ?? "n";
1774
- this.NUN = schema.NUN ?? "n";
1775
- this.SAMEKH = schema.SAMEKH ?? "s";
1776
- this.AYIN = schema.AYIN ?? "ʿ";
1777
- this.FINAL_PE = schema.FINAL_PE ?? "p";
1778
- this.PE = schema.PE ?? "p";
1779
- this.PE_DAGESH = schema.PE_DAGESH ?? undefined;
1780
- this.FINAL_TSADI = schema.FINAL_TSADI ?? "ṣ";
1781
- this.TSADI = schema.TSADI ?? "ṣ";
1782
- this.QOF = schema.QOF ?? "q";
1783
- this.RESH = schema.RESH ?? "r";
1784
- this.SHIN = schema.SHIN ?? "š";
1785
- this.SIN = schema.SIN ?? "ś";
1786
- this.TAV = schema.TAV ?? "t";
1787
- this.TAV_DAGESH = schema.TAV_DAGESH ?? undefined;
1788
- this.DIVINE_NAME = schema.DIVINE_NAME ?? "yhwh";
1789
- this.DIVINE_NAME_ELOHIM = schema.DIVINE_NAME_ELOHIM ?? undefined;
1790
- this.SYLLABLE_SEPARATOR = schema.SYLLABLE_SEPARATOR ?? undefined;
1791
- this.ADDITIONAL_FEATURES = schema.ADDITIONAL_FEATURES ?? [
1792
- {
1793
- FEATURE: "syllable",
1794
- HEBREW: /[\u{05B4}\u{05BB}]/u,
1795
- TRANSLITERATION: (syllable, heb, schema) => {
1796
- // matches any syllable with a hiriq or qubuts,
1797
- // and checks for a "long" vowel (i.e a hiriq or qubuts in an accented syllable without a mater)
1798
- const hasMater = syllable.clusters.some((cluster) => cluster.isMater);
1799
- if (syllable.isAccented && !hasMater) {
1800
- const macron = "\u0304";
1801
- const output = syllable.hasVowelName("HIRIQ") ? schema["HIRIQ"] + macron : schema["QUBUTS"] + macron;
1802
- return syllable.text.replace(heb, output.normalize("NFC"));
1803
- }
1804
- return syllable.text;
1805
- }
1806
- },
1807
- {
1808
- FEATURE: "syllable",
1809
- HEBREW: "\u{05BC}",
1810
- TRANSLITERATION: (syllable, heb) => {
1811
- // matches any word with a dagesh,
1812
- // and checks for a euphonic dagesh
1813
- const currWord = syllable?.word?.value;
1814
- const prevWord = currWord?.prev?.value;
1815
- if (!currWord || !prevWord || !prevWord.isInConstruct) {
1816
- return syllable.text;
1817
- }
1818
- if (syllable.prev) {
1819
- return syllable.text;
1820
- }
1821
- return syllable.text.replace(heb, "");
1822
- }
1823
- }
1824
- ];
1825
- this.STRESS_MARKER = schema.STRESS_MARKER ?? undefined;
1826
- this.longVowels = schema.longVowels ?? true;
1827
- this.qametsQatan = schema.qametsQatan ?? true;
1828
- this.shevaAfterMeteg = schema.shevaAfterMeteg ?? true;
1829
- this.shevaWithMeteg = schema.shevaWithMeteg ?? false;
1830
- this.sqnmlvy = schema.sqnmlvy ?? true;
1831
- this.wawShureq = schema.wawShureq ?? true;
1832
- this.article = schema.article ?? true;
1833
- this.allowNoNiqqud = schema.allowNoNiqqud ?? true;
1834
- this.strict = schema.strict ?? false;
1835
- this.holemHaser = schema.holemHaser ?? "remove";
1836
- this.ketivQeres = schema.ketivQeres ?? undefined;
1837
- }
1838
- }
1839
1618
  //# sourceMappingURL=schema.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema.js","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"schema.js","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"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"}
@@ -3,6 +3,7 @@ export { brillSimple } from "./brillSimple.js";
3
3
  export { jss } from "./jss.js";
4
4
  export { michiganClaremont } from "./michiganClaremont.js";
5
5
  export { romaniote } from "./romaniote.js";
6
+ export { SBL } from "./sblAcademic.js";
6
7
  export { sblAcademicSpirantization } from "./sblAcademicSpirantization.js";
7
8
  export { sblSimple } from "./sblSimple.js";
8
9
  export { tiberian } from "./tiberian.js";
@@ -3,6 +3,7 @@ export { brillSimple } from "./brillSimple.js";
3
3
  export { jss } from "./jss.js";
4
4
  export { michiganClaremont } from "./michiganClaremont.js";
5
5
  export { romaniote } from "./romaniote.js";
6
+ export { SBL } from "./sblAcademic.js";
6
7
  export { sblAcademicSpirantization } from "./sblAcademicSpirantization.js";
7
8
  export { sblSimple } from "./sblSimple.js";
8
9
  export { tiberian } from "./tiberian.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAC/C,OAAO,EAAE,GAAG,EAAE,MAAM,UAAU,CAAC;AAC/B,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAC3E,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAC/C,OAAO,EAAE,GAAG,EAAE,MAAM,UAAU,CAAC;AAC/B,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAE,GAAG,EAAE,MAAM,kBAAkB,CAAC;AACvC,OAAO,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAC3E,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC"}
@@ -64,6 +64,8 @@ export const jss = {
64
64
  DIVINE_NAME: "yhwh",
65
65
  ADDITIONAL_FEATURES: [
66
66
  {
67
+ TITLE: "Qamets Qatan Syllable",
68
+ DESCRIPTION: "Matches syllables that contain a qamets qatan character and if the following syllable contains a hateph qamets, replaces the qamets qatan with a regular qamets.",
67
69
  FEATURE: "syllable",
68
70
  // if the syllable contains a qamets qatan character
69
71
  HEBREW: /\u{05C7}/u,