From 5a6f7575c67e3da8f89bc7f3e9c02be17687afcf Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Mon, 18 May 2020 09:03:38 -0400 Subject: [PATCH] Fix extra whitespacing caused by reST line breaking (#23) --- requirements.txt | 1 + source/conf.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 5e727be..f3c8941 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ sphinx>=1.5.0 sphinx_rtd_theme +sphinx-cjkspace pygments diff --git a/source/conf.py b/source/conf.py index 2c43702..3ec845d 100644 --- a/source/conf.py +++ b/source/conf.py @@ -32,7 +32,8 @@ import sys # ones. extensions = ['sphinx.ext.todo', 'sphinx.ext.viewcode', - 'sphinx.ext.githubpages'] + 'sphinx.ext.githubpages', + 'sphinx_cjkspace.cjkspace'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']