From c62cf1b3f7cbd59e46161a863da395dc522b66ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20St=C3=B6r?= Date: Mon, 14 Dec 2015 21:41:06 +0100 Subject: [PATCH] Fix blockquote style and admonition --- docs/css/extra.css | 9 +++++++++ mkdocs.yml | 4 ++++ 2 files changed, 13 insertions(+) create mode 100644 docs/css/extra.css diff --git a/docs/css/extra.css b/docs/css/extra.css new file mode 100644 index 00000000..73919f67 --- /dev/null +++ b/docs/css/extra.css @@ -0,0 +1,9 @@ +blockquote { + padding: 0 15px; + color: #777; + border-left: 4px solid #ddd; +} + +.rst-content blockquote { + margin: 0; +} \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index 2a66052a..2bf560dc 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,11 +1,15 @@ site_name: NodeMCU Documentation site_description: Description of the NodeMCU documentation theme: readthedocs + repo_url: https://github.com/nodemcu/nodemcu-firmware/ + strict: true markdown_extensions: +- admonition: - toc: permalink: True + pages: - Home: 'index.md' - Building the firmware: 'build.md'