From c16671940c51bf97e4f0fc0e64848ec5c2cc09c2 Mon Sep 17 00:00:00 2001 From: Jen-Chieh Shen Date: Sun, 17 Nov 2024 22:51:59 +0800 Subject: [PATCH] docs: Add exampel --- .../Examples/System-Development/_index.en.md | 19 +++++++++++++++++++ .../System-Development/_index.zh-tw.md | 19 +++++++++++++++++++ docs/content/Examples/_index.en.md | 4 ++++ docs/content/Examples/_index.zh-tw.md | 4 ++++ 4 files changed, 46 insertions(+) create mode 100644 docs/content/Examples/System-Development/_index.en.md create mode 100644 docs/content/Examples/System-Development/_index.zh-tw.md create mode 100644 docs/content/Examples/_index.en.md create mode 100644 docs/content/Examples/_index.zh-tw.md diff --git a/docs/content/Examples/System-Development/_index.en.md b/docs/content/Examples/System-Development/_index.en.md new file mode 100644 index 0000000..2b4b0b5 --- /dev/null +++ b/docs/content/Examples/System-Development/_index.en.md @@ -0,0 +1,19 @@ +--- +title: 📦 System Development +weight: 200 +--- + +`Qob` is the magic file that `qob` will read it as the init file in Lisp implementation. + +```cl +;; -*- mode: lisp; lexical-binding: t -*- + +(files "lisp" + "scripts" + "Makefile" + "LICENSE" + "Qob") + +(source "quicklisp") +(source "ultralisp") +``` diff --git a/docs/content/Examples/System-Development/_index.zh-tw.md b/docs/content/Examples/System-Development/_index.zh-tw.md new file mode 100644 index 0000000..2e8c0b3 --- /dev/null +++ b/docs/content/Examples/System-Development/_index.zh-tw.md @@ -0,0 +1,19 @@ +--- +title: 📦 System 開發 +weight: 200 +--- + +`Qob` 是魔法文件,`qob` 會將其讀取為 Lisp 實踐中的初始化文件。 + +```cl +;; -*- mode: lisp; lexical-binding: t -*- + +(files "lisp" + "scripts" + "Makefile" + "LICENSE" + "Qob") + +(source "quicklisp") +(source "ultralisp") +``` diff --git a/docs/content/Examples/_index.en.md b/docs/content/Examples/_index.en.md new file mode 100644 index 0000000..1234dd0 --- /dev/null +++ b/docs/content/Examples/_index.en.md @@ -0,0 +1,4 @@ +--- +title: Examples +weight: 300 +--- diff --git a/docs/content/Examples/_index.zh-tw.md b/docs/content/Examples/_index.zh-tw.md new file mode 100644 index 0000000..7afc6e2 --- /dev/null +++ b/docs/content/Examples/_index.zh-tw.md @@ -0,0 +1,4 @@ +--- +title: 範例 +weight: 300 +---