-
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.
- Loading branch information
0 parents
commit 4063607
Showing
54 changed files
with
17,233 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Deploy to GitHub Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
permissions: | ||
contents: write | ||
pages: write | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy to GitHub Pages | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: ".nvmrc" | ||
- uses: bahmutov/npm-install@v1 | ||
- name: Build website | ||
run: npm run build | ||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
commit_message: "Deploy: ${{ github.event.head_commit.message }}" | ||
force_orphan: true | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./build | ||
user_name: github-actions[bot] | ||
user_email: 41898282+github-actions[bot]@users.noreply.github.com |
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,25 @@ | ||
name: Preview PR | ||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
jobs: | ||
test-deploy: | ||
name: Test deployment | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: ".nvmrc" | ||
- uses: bahmutov/npm-install@v1 | ||
- run: sudo apt-get install wget | ||
- name: Build website | ||
run: npm run build | ||
- name: Archive local website | ||
run: scripts/archive.sh 3000 "archived-site" | ||
- name: Upload archive as artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: website-archive | ||
path: archived-site |
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,20 @@ | ||
# Dependencies | ||
/node_modules | ||
|
||
# Production | ||
/build | ||
|
||
# Generated files | ||
.docusaurus | ||
.cache-loader | ||
|
||
# Misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* |
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 @@ | ||
lts/* |
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,41 @@ | ||
# Website | ||
|
||
This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator. | ||
|
||
### Installation | ||
|
||
``` | ||
$ yarn | ||
``` | ||
|
||
### Local Development | ||
|
||
``` | ||
$ yarn start | ||
``` | ||
|
||
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server. | ||
|
||
### Build | ||
|
||
``` | ||
$ yarn build | ||
``` | ||
|
||
This command generates static content into the `build` directory and can be served using any static contents hosting service. | ||
|
||
### Deployment | ||
|
||
Using SSH: | ||
|
||
``` | ||
$ USE_SSH=true yarn deploy | ||
``` | ||
|
||
Not using SSH: | ||
|
||
``` | ||
$ GIT_USER=<Your GitHub username> yarn deploy | ||
``` | ||
|
||
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch. |
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,8 @@ | ||
--- | ||
slug: / | ||
sidebar_position: 1 | ||
--- | ||
|
||
# 0. Contents | ||
|
||
Welcome to the official specification of the Interslavic auxiliary language. |
21 changes: 21 additions & 0 deletions
21
docs/01-foundation-and-design-principles/01-introduction.md
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,21 @@ | ||
# 1.1. Introduction | ||
|
||
## 1.1.1 Scope of this Specification | ||
- Definition of Interslavic as an auxiliary interlingual system | ||
- Relationship to natural Slavic languages | ||
- Goals and non-goals of the specification | ||
- Target audience and expected usage scenarios | ||
|
||
## 1.1.2 Status of this Document | ||
- Standardization status | ||
- Relationship to previous Interslavic projects | ||
- Version and revision information | ||
- Forward compatibility guidelines | ||
|
||
## 1.1.3 How to Read this Specification | ||
- Notation conventions | ||
- Typographical conventions | ||
- Examples formatting | ||
- Cross-references and external links | ||
|
||
|
17 changes: 17 additions & 0 deletions
17
docs/01-foundation-and-design-principles/02-fundamental-principles.md
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,17 @@ | ||
# 1.2. Fundamental Principles | ||
|
||
## 1.2.1 Core Design Criteria | ||
- Maximum Mutual Intelligibility | ||
- Natural Development Principles | ||
- Simplification Guidelines | ||
- Adaptation Framework | ||
|
||
## 1.2.2 Scientific Foundation | ||
- Linguistic Basis | ||
- Standardization Methodology | ||
|
||
## 1.2.3 Relationship to Other Standards | ||
- Linguistic Standards | ||
- Technical Standards | ||
|
||
|
20 changes: 20 additions & 0 deletions
20
docs/01-foundation-and-design-principles/03-infrastructure.md
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,20 @@ | ||
# 1.3. Infrastructure | ||
|
||
## 1.3.1 Terminology | ||
- Normative Terms | ||
- Linguistic Terms | ||
- Specification-Specific Terms | ||
|
||
## 1.3.2 Common Patterns | ||
- Notation Patterns | ||
- Cross-Reference Patterns | ||
|
||
## 1.3.3 Conformance Requirements | ||
- Core Requirements | ||
- Implementation Classes | ||
|
||
## 1.3.4 Processing Requirements | ||
- Text Processing | ||
- Implementation Requirements | ||
|
||
|
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,5 @@ | ||
# 1. Foundation and Design Principles | ||
|
||
Core concepts and design philosophy of the Interslavic language. | ||
|
||
|
13 changes: 13 additions & 0 deletions
13
docs/02-phonology-and-orthography/01-overview-and-principles.md
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,13 @@ | ||
# 2.1. Overview and Principles | ||
|
||
## 2.1.1 General Characteristics | ||
- Sound System Organization | ||
- Historical Foundations | ||
- Modern Adaptations | ||
|
||
## 2.1.2 Design Principles | ||
- Recognition Maximization | ||
- Simplification Guidelines | ||
- Implementation Framework | ||
|
||
|
13 changes: 13 additions & 0 deletions
13
docs/02-phonology-and-orthography/02-phonological-system.md
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,13 @@ | ||
# 2.2. Phonological System | ||
|
||
## 2.2.1 Vowel System | ||
- Basic Vowel Inventory | ||
- Vowel Features | ||
- Vowel Alternations | ||
|
||
## 2.2.2 Consonant System | ||
- Basic Consonant Inventory | ||
- Consonant Features | ||
- Consonant Processes | ||
|
||
|
18 changes: 18 additions & 0 deletions
18
docs/02-phonology-and-orthography/03-orthographic-systems.md
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,18 @@ | ||
# 2.3. Orthographic Systems | ||
|
||
## 2.3.1 General Principles | ||
- Dual Script Approach | ||
- Design Criteria | ||
- Implementation Guidelines | ||
|
||
## 2.3.2 Latin Script | ||
- Basic Latin Alphabet | ||
- Extended Latin Features | ||
- Special Characters | ||
|
||
## 2.3.3 Cyrillic Script | ||
- Basic Cyrillic Alphabet | ||
- Extended Cyrillic Features | ||
- Regional Variations | ||
|
||
|
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,5 @@ | ||
# 2. Phonology and Orthography | ||
|
||
Sound system and writing systems of Interslavic. | ||
|
||
|
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,13 @@ | ||
# 3.1. General Principles | ||
|
||
## 3.1.1 Morphological Typology | ||
- Fusional Characteristics | ||
- Morphological Processes | ||
- Structural Patterns | ||
|
||
## 3.1.2 Design Principles | ||
- Regularity Framework | ||
- Pan-Slavic Recognition | ||
- Implementation Guidelines | ||
|
||
|
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,18 @@ | ||
# 3.2. Nominal Morphology | ||
|
||
## 3.2.1 Grammatical Categories | ||
- Gender System | ||
- Number System | ||
- Case System | ||
|
||
## 3.2.2 Declension Patterns | ||
- Substantive Declension | ||
- Adjectival Declension | ||
- Mixed Patterns | ||
|
||
## 3.2.3 Adjectival Morphology | ||
- Form Types | ||
- Comparison Degrees | ||
- Special Forms | ||
|
||
|
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,13 @@ | ||
# 3.3. Pronominal System | ||
|
||
## 3.3.1 Personal Pronouns | ||
- Basic Forms | ||
- Declension Patterns | ||
- Usage Rules | ||
|
||
## 3.3.2 Other Pronouns | ||
- Demonstrative Pronouns | ||
- Possessive Pronouns | ||
- Interrogative/Relative Pronouns | ||
|
||
|
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,5 @@ | ||
# 3. Morphology and Lexicon | ||
|
||
Word formation and vocabulary systems. | ||
|
||
|
13 changes: 13 additions & 0 deletions
13
docs/04-syntax-and-sentence-structure/01-basic-syntactic-principles.md
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,13 @@ | ||
# 4.1. Basic Syntactic Principles | ||
|
||
## 4.1.1 General Characteristics | ||
- Word Order Flexibility | ||
- Agreement Systems | ||
- Core Relations | ||
|
||
## 4.1.2 Core Syntactic Features | ||
- Configurationality | ||
- Null Subject Parameter | ||
- Basic Patterns | ||
|
||
|
18 changes: 18 additions & 0 deletions
18
docs/04-syntax-and-sentence-structure/02-phrase-structure.md
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,18 @@ | ||
# 4.2. Phrase Structure | ||
|
||
## 4.2.1 Noun Phrases | ||
- Internal Structure | ||
- Agreement Patterns | ||
- Word Order Rules | ||
|
||
## 4.2.2 Verb Phrases | ||
- Argument Structure | ||
- Complex Predicates | ||
- Complementation Types | ||
|
||
## 4.2.3 Other Phrases | ||
- Adjectival Phrases | ||
- Prepositional Phrases | ||
- Adverbial Phrases | ||
|
||
|
13 changes: 13 additions & 0 deletions
13
docs/04-syntax-and-sentence-structure/03-clause-structure.md
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,13 @@ | ||
# 4.3. Clause Structure | ||
|
||
## 4.3.1 Simple Clauses | ||
- Basic Patterns | ||
- Constituent Order | ||
- Special Constructions | ||
|
||
## 4.3.2 Complex Clauses | ||
- Coordination | ||
- Subordination | ||
- Mixed Structures | ||
|
||
|
18 changes: 18 additions & 0 deletions
18
docs/04-syntax-and-sentence-structure/04-functional-categories.md
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,18 @@ | ||
# 4.4. Functional Categories | ||
|
||
## 4.4.1 Negation | ||
- Sentence Negation | ||
- Constituent Negation | ||
- Special Cases | ||
|
||
## 4.4.2 Questions | ||
- Yes-No Questions | ||
- Wh-Questions | ||
- Complex Questions | ||
|
||
## 4.4.3 Focus and Topic | ||
- Focus Marking | ||
- Topic Structure | ||
- Information Flow | ||
|
||
|
18 changes: 18 additions & 0 deletions
18
docs/04-syntax-and-sentence-structure/05-special-constructions.md
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,18 @@ | ||
# 4.5. Special Constructions | ||
|
||
## 4.5.1 Passive Voice | ||
- Regular Passive | ||
- Reflexive Passive | ||
- Special Forms | ||
|
||
## 4.5.2 Reflexive Constructions | ||
- True Reflexives | ||
- Middle Constructions | ||
- Reciprocal Uses | ||
|
||
## 4.5.3 Comparative Constructions | ||
- Comparatives | ||
- Superlatives | ||
- Equatives | ||
|
||
|
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,5 @@ | ||
# 4. Syntax and Sentence Structure | ||
|
||
Rules for sentence construction and complex expressions. | ||
|
||
|
Oops, something went wrong.