aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2024-02-04 21:19:14 +0700
committerShulhan <ms@kilabit.info>2024-02-04 21:19:14 +0700
commitef954b5aae36934165103c398b783bac1fb4c911 (patch)
tree2c31fbe1a98dac5159961ecd6c685ca3c9b619c3
parent38a175086c9c06845e0248fddcd39a590d323a6e (diff)
downloadpakakeh.ts-ef954b5aae36934165103c398b783bac1fb4c911.tar.xz
all: rewrite README using markdown format
This is to make the repository README rendered on git.sr.ht, not only github.
-rw-r--r--.gitignore1
-rw-r--r--.reuse/dep54
-rw-r--r--README.md (renamed from README.adoc)11
3 files changed, 9 insertions, 7 deletions
diff --git a/.gitignore b/.gitignore
index a5b513e..b90bde9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
// SPDX-License-Identifier: GPL-3.0-or-later
*.js
/node_modules
+README.html
diff --git a/.reuse/dep5 b/.reuse/dep5
index e30f75c..9541263 100644
--- a/.reuse/dep5
+++ b/.reuse/dep5
@@ -10,3 +10,7 @@ License: GPL-3.0-or-later
Files: tsconfig.json
Copyright: 2022 Shulhan <ms@kilabit.info>
License: GPL-3.0-or-later
+
+Files: README.md
+Copyright: 2021 Shulhan <ms@kilabit.info>
+License: GPL-3.0-or-later
diff --git a/README.adoc b/README.md
index 3f40ff4..c8c812c 100644
--- a/README.adoc
+++ b/README.md
@@ -1,16 +1,13 @@
-// SPDX-FileCopyrightText: 2021 M. Shulhan <ms@kilabit.info>
-// SPDX-License-Identifier: GPL-3.0-or-later
-= web-user interface (wui)
-Shulhan <ms@kilabit.info>
+# web-user interface (wui)
A HTML web-user interface components built with TypeScript.
-== Coding style
+## Coding style
* Use snake_case for field, variable, HTML ID, and CSS class names.
* Use camelCase for class, interface, type, function, or method names.
* An exported type or class. interface, type, method, or function name MUST
start with an upper-case letter.
-* An exported class, type, interface, or function MUST be prefixed with "Wui".
-
+* An exported class, type, interface, or function MUST be prefixed with
+ "Wui".
* Use the `WuiResponseInterface` for non-void return type.