]> Nishi Git Mirror - gwion.git/commitdiff
:art: Uudate
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Tue, 26 Nov 2019 22:05:51 +0000 (23:05 +0100)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Tue, 26 Nov 2019 22:05:56 +0000 (23:05 +0100)
Makefile
README.md
book.toml [deleted file]
custom.css [deleted file]

index 32849fd833b94dfc1ba21e28f797e8638ca2d57e..4f753af37a20f02a893936548e090ba07b345c34 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,9 +4,7 @@ serve: ensure
 build: ensure
        @mdbook build
 
-book: build
-
-deploy: book
+deploy: build
        @sh scripts/deploy.sh
 
 ensure:
index 0282840f6ec440093cbecb2c636e57b43b2fdd09..59871679652f7325a66418e7256b8d1bb66eee6f 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,12 +1,15 @@
 # Documentation for Gwion
 
 it builds using mdr, mdbook and vale
-  * book
+
+## Makefile targets
+
+you can use those recipes:
   * build
+  * serve
+  * deploy
+  * lint
+  * ensure
   * clean
     * clean-all
     * clean-tests
-  * deploy
-  * ensure
-  * lint
-  * serve
diff --git a/book.toml b/book.toml
deleted file mode 100644 (file)
index 9c120e7..0000000
--- a/book.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-[book]
-authors = ["Jérémie Astor"]
-title = "Gwion"
-src = "md"
-
-[output.html]
-default-theme = "rust"
-additional-css = ["custom.css"]
-
-[output.html.fold]
-enable = true
-level = 0
diff --git a/custom.css b/custom.css
deleted file mode 100644 (file)
index a453272..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-.mdr {
-  color:var(--sidebar-active);
-  background-color:var(--sidebar-bg);
-  border: 5px solid var(--sidebar-fg);
-  padding: 10px;
-  margin-right: 20%;
-  margin-left: 20%;
-  moz-border-radius: 15px;
-  -webkit-border-radius: 15px;
-}
-
-footer {
-  padding: 10px;
-  text-align: center;
-  font-size: small;
-  font-style: italic;
-}
-
-.zoom {
-  transition: transform .2s; /* Animation */
-}
-
-.zoom:hover {
-  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
-}