-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from HCMID/dev
Update docs
- Loading branch information
Showing
9 changed files
with
331 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Orthography | ||
|
||
|
||
Learn the package on quarto.pub. See API docs here. | ||
Documentation has moved to [quarto.pub](https://neelsmith.quarto.pub/orthography/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
# Exported types and functions | ||
|
||
## Types | ||
|
||
|
||
`OrthographicSystem` | ||
|
||
:::{.callout-note appearance="minimal"} | ||
```{julia} | ||
#| echo: false | ||
#| warning: false | ||
using Orthography | ||
@doc OrthographicSystem | ||
``` | ||
::: | ||
|
||
`TokenCategory` | ||
|
||
:::{.callout-note appearance="minimal"} | ||
```{julia} | ||
#| echo: false | ||
#| warning: false | ||
@doc TokenCategory | ||
``` | ||
::: | ||
|
||
`LexicalToken` | ||
|
||
:::{.callout-note appearance="minimal"} | ||
```{julia} | ||
#| echo: false | ||
#| warning: false | ||
@doc LexicalToken | ||
``` | ||
::: | ||
|
||
|
||
`NumericToken` | ||
|
||
:::{.callout-note appearance="minimal"} | ||
```{julia} | ||
#| echo: false | ||
#| warning: false | ||
@doc NumericToken | ||
``` | ||
::: | ||
|
||
|
||
`PunctuationToken` | ||
|
||
:::{.callout-note appearance="minimal"} | ||
```{julia} | ||
#| echo: false | ||
#| warning: false | ||
@doc PunctuationToken | ||
``` | ||
::: | ||
|
||
## Functions | ||
|
||
Public functions implemented for all subtypes of `OrthographicSystem`. | ||
|
||
|
||
|
||
`codepoints` | ||
|
||
:::{.callout-note appearance="minimal"} | ||
```{julia} | ||
#| echo: false | ||
#| warning: false | ||
@doc PunctuationToken | ||
``` | ||
::: | ||
|
||
|
||
`tokentypes` | ||
|
||
:::{.callout-note appearance="minimal"} | ||
```{julia} | ||
#| echo: false | ||
#| warning: false | ||
@doc tokentypes | ||
``` | ||
::: | ||
|
||
`validcp` | ||
|
||
:::{.callout-note appearance="minimal"} | ||
```{julia} | ||
#| echo: false | ||
#| warning: false | ||
@doc validcp | ||
``` | ||
::: | ||
|
||
`validstring` | ||
|
||
:::{.callout-note appearance="minimal"} | ||
```{julia} | ||
#| echo: false | ||
#| warning: false | ||
@doc validstring | ||
``` | ||
::: | ||
|
||
`tokenize` | ||
|
||
:::{.callout-note appearance="minimal"} | ||
```{julia} | ||
#| echo: false | ||
#| warning: false | ||
@doc tokenize | ||
``` | ||
::: | ||
|
||
Working with text corpora: | ||
|
||
|
||
`corpus_histo` | ||
|
||
:::{.callout-note appearance="minimal"} | ||
```{julia} | ||
#| echo: false | ||
#| warning: false | ||
@doc corpus_histo | ||
``` | ||
::: | ||
|
||
Other utilities | ||
|
||
|
||
`nfkc` | ||
|
||
|
||
:::{.callout-note appearance="minimal"} | ||
```{julia} | ||
#| echo: false | ||
#| warning: false | ||
@doc nfkc | ||
``` | ||
::: | ||
|
||
## Example implementation | ||
|
||
|
||
`SimpleAscii` | ||
|
||
:::{.callout-note appearance="minimal"} | ||
```{julia} | ||
#| echo: false | ||
#| warning: false | ||
@doc SimpleAscii | ||
``` | ||
::: | ||
|
||
`simpleAscii` | ||
|
||
:::{.callout-note appearance="minimal"} | ||
```{julia} | ||
#| echo: false | ||
#| warning: false | ||
@doc simpleAscii | ||
``` | ||
::: | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.