aboutsummaryrefslogtreecommitdiffhomepage
path: root/nuldoc-src/config.ts
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2022-12-23 23:27:09 +0900
committernsfisis <nsfisis@gmail.com>2023-03-06 01:46:04 +0900
commit88ba6cfe220216f371f8756921059fac51a21262 (patch)
treef272db2a0a3340f103df6618f19a101e65941b37 /nuldoc-src/config.ts
parent8f988a6e899aed678406ddfac1be4ef105439274 (diff)
downloadblog.nsfisis.dev-88ba6cfe220216f371f8756921059fac51a21262.tar.gz
blog.nsfisis.dev-88ba6cfe220216f371f8756921059fac51a21262.tar.zst
blog.nsfisis.dev-88ba6cfe220216f371f8756921059fac51a21262.zip
AsciiDoc to DocBook
Diffstat (limited to 'nuldoc-src/config.ts')
-rw-r--r--nuldoc-src/config.ts35
1 files changed, 35 insertions, 0 deletions
diff --git a/nuldoc-src/config.ts b/nuldoc-src/config.ts
new file mode 100644
index 0000000..74521b3
--- /dev/null
+++ b/nuldoc-src/config.ts
@@ -0,0 +1,35 @@
+export const config = {
+ locations: {
+ contentDir: "/content",
+ destDir: "/public",
+ staticDir: "/static",
+ templateDir: "/templates",
+ },
+ rendering: {
+ html: {
+ indentWidth: 2,
+ },
+ },
+ blog: {
+ author: "nsfisis",
+ siteName: "REPL: Rest-Eat-Program Loop",
+ siteCopyrightYear: 2021,
+ tagLabels: {
+ "conference": "カンファレンス",
+ "cpp": "C++",
+ "cpp17": "C++ 17",
+ "note-to-self": "備忘録",
+ "php": "PHP",
+ "phpcon": "PHP カンファレンス",
+ "phperkaigi": "PHPerKaigi",
+ "python": "Python",
+ "python3": "Python 3",
+ "ruby": "Ruby",
+ "ruby3": "Ruby 3",
+ "rust": "Rust",
+ "vim": "Vim",
+ },
+ },
+};
+
+export type Config = typeof config;