1
0
Lucien Cartier-Tilet bcf5c0f3a6
All checks were successful
continuous-integration/drone/push Build is passing
[Eittlandic] More documentation on 20th, 21st centuries
New words in dictionary
2023-03-13 13:38:59 +01:00
2023-02-26 22:52:33 +01:00
2023-02-26 22:52:33 +01:00
2023-02-26 21:01:19 +01:00
2023-02-26 21:01:19 +01:00
2023-02-26 22:52:33 +01:00
2023-02-26 21:01:19 +01:00
2023-02-26 21:01:19 +01:00
2023-02-26 21:01:19 +01:00
2023-02-26 21:01:19 +01:00
2023-02-26 22:52:33 +01:00
2023-02-26 22:52:33 +01:00
2023-02-26 22:52:33 +01:00

Pundraks Conlangs

About the Project

This repository holds my conlanging projects I am working on. The files Im using are written in org-mode and are exported in Markdown through Emacs.

These Markdown files are then compiled by Vuepress into a beautiful website available at conlang.phundrak.com.

Running the project

In order to run the project, you need to export all .org files in the Markdown format. To do that easily, you can use an org project setup in Emacs, mine looks like this:

(require 'ox-gfm)
(defvar phundrak--projects-conlanging-common-root
  "~/org/conlanging/docs/"
  "Points to the common root of my source and target for my
conlang.phundrak.com org project.")
(setq org-publish-project-alist
        `(("conlang-phundrak-com-md"
           :base-directory ,phundrak--projects-conlanging-common-root
           :base-extension "org"
           :exclude ,(rx (* print
                            (or "CONTRIB"
                                   "README"
                                   "site-map"
                                   "temp"
                                   "private"
                                   "svg-ink")
                            (* print)))
           :publishing-directory ,phundrak--projects-conlanging-common-root
           :recursive t
           :language "en"
           :publishing-function org-gfm-publish-to-gfm
           :headline-levels 5
           :auto-sitemap nil
           :auto-preamble nil)
          ("conlang-phundrak-com"
           :components ("conlang-phundrak-com-md"))))

Once you have all the Markdown files generated correctly, you can install the dependencies of the project.

yarn
# or
npm install # delete the yarn.lock file first

Once this is done, you can launch a preview of the project.

yarn docs:dev
# or
npm run docs:dev

You can also compile the project to a static website.

yarn docs:build
# or
npm run docs:build
Description
My conlanging website, powered by orgmode and Vuepress!
https://conlang.phundrak.com
Readme 23 MiB
Languages
Org 96.2%
Emacs Lisp 3.4%
Nix 0.4%