-
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
Showing
11 changed files
with
802 additions
and
319 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,43 @@ | ||
name: Docs | ||
on: [push] | ||
jobs: | ||
build-and-deploy-docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
path: dict | ||
|
||
# Mermaid processing starts here: | ||
- name: get list of files | ||
id: getfile | ||
run: | | ||
echo "::set-output name=files::$(find dict/docs -name '*.md' | xargs)" | ||
- name: print list of files for debugging | ||
run: | | ||
echo ${{ steps.getfile.outputs.files }} | ||
# The actual Mermaid compilation | ||
- name: compile mermaid | ||
uses: divvun/compile-mermaid-markdown-action@main | ||
with: | ||
files: ${{ steps.getfile.outputs.files }} | ||
output: 'dict/docs/mermaid-svgs' | ||
env: | ||
HIDE_CODEBLOCKS: 1 | ||
# The next one must be declared, with an empty value, for paths to work for us: | ||
ABSOLUTE_IMAGE_LINKS: | ||
OUTPUT_FILE_TYPE: "svg" | ||
|
||
- name: list generated svg fils | ||
run: | | ||
cd dict && ls -l docs/mermaid-svgs | ||
# Mermaid processing ends here | ||
|
||
- name: deploy gh pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: dict/docs/ | ||
enable_jekyll: true |
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,53 @@ | ||
# http://www.gnu.org/software/automake | ||
|
||
Makefile.in | ||
/ar-lib | ||
/mdate-sh | ||
/py-compile | ||
/test-driver | ||
/ylwrap | ||
.deps/ | ||
.dirstamp | ||
|
||
# http://www.gnu.org/software/autoconf | ||
|
||
autom4te.cache | ||
/autoscan.log | ||
/autoscan-*.log | ||
/aclocal.m4 | ||
/compile | ||
/config.cache | ||
/config.guess | ||
/config.h.in | ||
/config.log | ||
/config.status | ||
/config.sub | ||
/configure | ||
/configure.scan | ||
/depcomp | ||
/install-sh | ||
/missing | ||
/stamp-h1 | ||
|
||
# https://www.gnu.org/software/libtool/ | ||
|
||
/ltmain.sh | ||
|
||
# http://www.gnu.org/software/texinfo | ||
|
||
/texinfo.tex | ||
|
||
# http://www.gnu.org/software/m4/ | ||
|
||
m4/libtool.m4 | ||
m4/ltoptions.m4 | ||
m4/ltsugar.m4 | ||
m4/ltversion.m4 | ||
m4/lt~obsolete.m4 | ||
|
||
# Generated Makefile | ||
# (meta build system like autotools, | ||
# can automatically generate from config.status script | ||
# (which is called by configure script)) | ||
Makefile | ||
.DS_Store |
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,12 @@ | ||
template = "" | ||
rev_id = 3 | ||
template_sha = "50f983ed6da8e78c9c3344a18d6a46e3f843236c" | ||
|
||
[replacements] | ||
__LICENSE__ = "CC-BY-4.0" | ||
__UND2C_SRC__ = "se" | ||
__UND2C_TRG__ = "nb" | ||
__UNDEFINED_SOURCE__ = "North Sámi" | ||
__UNDEFINED_TARGET__ = "Norwegian Bokmål" | ||
__UND_SRC__ = "sme" | ||
__UND_TRG__ = "nob" |
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,24 @@ | ||
# This template merge config file lists: | ||
# | ||
# - name: name of template stuff | ||
# - patterns: strings to do text substitution on | ||
# - rev_id: a sequential revision id of the template repo (manually maintained for now) | ||
# - required: a full list of all files always merged | ||
# - optional: a full list of all files merged when the --optional flag is used with `gut template` | ||
# - ignored: never used in merging, only when populating new repos | ||
|
||
name = "Dictionary Template" | ||
patterns = ["sme", "se", "North Sámi", "nob", "nb", "Norwegian Bokmål", "CC-BY-4.0"] | ||
rev_id = 3 | ||
required = [".gitignore", | ||
".github/workflows/docsygen.yml", | ||
"docs/_config.yml", | ||
"docs/_includes/toc.html", | ||
"docs/_layouts/default.html", | ||
"docs/assets/css/style.scss"] | ||
|
||
optional = ["README.md", | ||
"docs/index.md"] | ||
|
||
ignored = ["LICENSE", | ||
".gut/delta.toml"] |
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,9 @@ | ||
# Dictionary for sme — nob | ||
|
||
This repository contains source files for a dictionary from North Sámi to Norwegian Bokmål. The content is licensed under the CC-BY-4.0 license. | ||
|
||
Many of the dictionaries are published on [sátni.org](https://sátni.org) and [NDS](https://sanit.oahpa.no). | ||
|
||
# Contributions | ||
|
||
Contributions are welcome, just clone and submit a pull request. Or use the in-place editor in GitHub to make your contributions. All contributions must be licensed under the same license as the original code. |
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,3 @@ | ||
theme: jekyll-theme-minimal | ||
title: Dictionary for North Sámi ⇒ Norwegian Bokmål | ||
description: An electronic dictionary from North Sámi to Norwegian Bokmål |
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,182 @@ | ||
{% capture tocWorkspace %} | ||
{% comment %} | ||
Copyright (c) 2017 Vladimir "allejo" Jimenez | ||
|
||
Permission is hereby granted, free of charge, to any person | ||
obtaining a copy of this software and associated documentation | ||
files (the "Software"), to deal in the Software without | ||
restriction, including without limitation the rights to use, | ||
copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the | ||
Software is furnished to do so, subject to the following | ||
conditions: | ||
|
||
The above copyright notice and this permission notice shall be | ||
included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES | ||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT | ||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | ||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
OTHER DEALINGS IN THE SOFTWARE. | ||
{% endcomment %} | ||
{% comment %} | ||
Version 1.1.0 | ||
https://github.com/allejo/jekyll-toc | ||
|
||
"...like all things liquid - where there's a will, and ~36 hours to spare, there's usually a/some way" ~jaybe | ||
|
||
Usage: | ||
{% include toc.html html=content sanitize=true class="inline_toc" id="my_toc" h_min=2 h_max=3 %} | ||
|
||
Parameters: | ||
* html (string) - the HTML of compiled markdown generated by kramdown in Jekyll | ||
|
||
Optional Parameters: | ||
* sanitize (bool) : false - when set to true, the headers will be stripped of any HTML in the TOC | ||
* class (string) : '' - a CSS class assigned to the TOC | ||
* id (string) : '' - an ID to assigned to the TOC | ||
* h_min (int) : 1 - the minimum TOC header level to use; any header lower than this value will be ignored | ||
* h_max (int) : 6 - the maximum TOC header level to use; any header greater than this value will be ignored | ||
* ordered (bool) : false - when set to true, an ordered list will be outputted instead of an unordered list | ||
* item_class (string) : '' - add custom class(es) for each list item; has support for '%level%' placeholder, which is the current heading level | ||
* submenu_class (string) : '' - add custom class(es) for each child group of headings; has support for '%level%' placeholder which is the current "submenu" heading level | ||
* base_url (string) : '' - add a base url to the TOC links for when your TOC is on another page than the actual content | ||
* anchor_class (string) : '' - add custom class(es) for each anchor element | ||
* skip_no_ids (bool) : false - skip headers that do not have an `id` attribute | ||
|
||
Output: | ||
An ordered or unordered list representing the table of contents of a markdown block. This snippet will only | ||
generate the table of contents and will NOT output the markdown given to it | ||
{% endcomment %} | ||
|
||
{% capture newline %} | ||
{% endcapture %} | ||
{% assign newline = newline | rstrip %} <!-- Remove the extra spacing but preserve the newline --> | ||
|
||
{% capture deprecation_warnings %}{% endcapture %} | ||
|
||
{% if include.baseurl %} | ||
{% capture deprecation_warnings %}{{ deprecation_warnings }}<!-- jekyll-toc :: "baseurl" has been deprecated, use "base_url" instead -->{{ newline }}{% endcapture %} | ||
{% endif %} | ||
|
||
{% if include.skipNoIDs %} | ||
{% capture deprecation_warnings %}{{ deprecation_warnings }}<!-- jekyll-toc :: "skipNoIDs" has been deprecated, use "skip_no_ids" instead -->{{ newline }}{% endcapture %} | ||
{% endif %} | ||
|
||
{% capture jekyll_toc %}{% endcapture %} | ||
{% assign orderedList = include.ordered | default: false %} | ||
{% assign baseURL = include.base_url | default: include.baseurl | default: '' %} | ||
{% assign skipNoIDs = include.skip_no_ids | default: include.skipNoIDs | default: false %} | ||
{% assign minHeader = include.h_min | default: 1 %} | ||
{% assign maxHeader = include.h_max | default: 6 %} | ||
{% assign nodes = include.html | strip | split: '<h' %} | ||
|
||
{% assign firstHeader = true %} | ||
{% assign currLevel = 0 %} | ||
{% assign lastLevel = 0 %} | ||
|
||
{% capture listModifier %}{% if orderedList %}ol{% else %}ul{% endif %}{% endcapture %} | ||
|
||
{% for node in nodes %} | ||
{% if node == "" %} | ||
{% continue %} | ||
{% endif %} | ||
|
||
{% assign currLevel = node | replace: '"', '' | slice: 0, 1 | times: 1 %} | ||
|
||
{% if currLevel < minHeader or currLevel > maxHeader %} | ||
{% continue %} | ||
{% endif %} | ||
|
||
{% assign _workspace = node | split: '</h' %} | ||
|
||
{% assign _idWorkspace = _workspace[0] | split: 'id="' %} | ||
{% assign _idWorkspace = _idWorkspace[1] | split: '"' %} | ||
{% assign htmlID = _idWorkspace[0] %} | ||
|
||
{% assign _classWorkspace = _workspace[0] | split: 'class="' %} | ||
{% assign _classWorkspace = _classWorkspace[1] | split: '"' %} | ||
{% assign htmlClass = _classWorkspace[0] %} | ||
|
||
{% if htmlClass contains "no_toc" %} | ||
{% continue %} | ||
{% endif %} | ||
|
||
{% if firstHeader %} | ||
{% assign minHeader = currLevel %} | ||
{% endif %} | ||
|
||
{% capture _hAttrToStrip %}{{ _workspace[0] | split: '>' | first }}>{% endcapture %} | ||
{% assign header = _workspace[0] | replace: _hAttrToStrip, '' %} | ||
|
||
{% if include.item_class and include.item_class != blank %} | ||
{% capture listItemClass %} class="{{ include.item_class | replace: '%level%', currLevel | split: '.' | join: ' ' }}"{% endcapture %} | ||
{% endif %} | ||
|
||
{% if include.submenu_class and include.submenu_class != blank %} | ||
{% assign subMenuLevel = currLevel | minus: 1 %} | ||
{% capture subMenuClass %} class="{{ include.submenu_class | replace: '%level%', subMenuLevel | split: '.' | join: ' ' }}"{% endcapture %} | ||
{% endif %} | ||
|
||
{% capture anchorBody %}{% if include.sanitize %}{{ header | strip_html }}{% else %}{{ header }}{% endif %}{% endcapture %} | ||
|
||
{% if htmlID %} | ||
{% capture anchorAttributes %} href="{% if baseURL %}{{ baseURL }}{% endif %}#{{ htmlID }}"{% endcapture %} | ||
|
||
{% if include.anchor_class %} | ||
{% capture anchorAttributes %}{{ anchorAttributes }} class="{{ include.anchor_class | split: '.' | join: ' ' }}"{% endcapture %} | ||
{% endif %} | ||
|
||
{% capture listItem %}<a{{ anchorAttributes }}>{{ anchorBody }}</a>{% endcapture %} | ||
{% elsif skipNoIDs == true %} | ||
{% continue %} | ||
{% else %} | ||
{% capture listItem %}{{ anchorBody }}{% endcapture %} | ||
{% endif %} | ||
|
||
{% if currLevel > lastLevel %} | ||
{% capture jekyll_toc %}{{ jekyll_toc }}<{{ listModifier }}{{ subMenuClass }}>{% endcapture %} | ||
{% elsif currLevel < lastLevel %} | ||
{% assign repeatCount = lastLevel | minus: currLevel %} | ||
|
||
{% for i in (1..repeatCount) %} | ||
{% capture jekyll_toc %}{{ jekyll_toc }}</li></{{ listModifier }}>{% endcapture %} | ||
{% endfor %} | ||
|
||
{% capture jekyll_toc %}{{ jekyll_toc }}</li>{% endcapture %} | ||
{% else %} | ||
{% capture jekyll_toc %}{{ jekyll_toc }}</li>{% endcapture %} | ||
{% endif %} | ||
|
||
{% capture jekyll_toc %}{{ jekyll_toc }}<li{{ listItemClass }}>{{ listItem }}{% endcapture %} | ||
|
||
{% assign lastLevel = currLevel %} | ||
{% assign firstHeader = false %} | ||
{% endfor %} | ||
|
||
{% assign repeatCount = minHeader | minus: 1 %} | ||
{% assign repeatCount = lastLevel | minus: repeatCount %} | ||
{% for i in (1..repeatCount) %} | ||
{% capture jekyll_toc %}{{ jekyll_toc }}</li></{{ listModifier }}>{% endcapture %} | ||
{% endfor %} | ||
|
||
{% if jekyll_toc != '' %} | ||
{% assign rootAttributes = '' %} | ||
{% if include.class and include.class != blank %} | ||
{% capture rootAttributes %} class="{{ include.class | split: '.' | join: ' ' }}"{% endcapture %} | ||
{% endif %} | ||
|
||
{% if include.id and include.id != blank %} | ||
{% capture rootAttributes %}{{ rootAttributes }} id="{{ include.id }}"{% endcapture %} | ||
{% endif %} | ||
|
||
{% if rootAttributes %} | ||
{% assign nodes = jekyll_toc | split: '>' %} | ||
{% capture jekyll_toc %}<{{ listModifier }}{{ rootAttributes }}>{{ nodes | shift | join: '>' }}>{% endcapture %} | ||
{% endif %} | ||
{% endif %} | ||
{% endcapture %}{% assign tocWorkspace = '' %}{{ deprecation_warnings }}{{ jekyll_toc }} |
Oops, something went wrong.