Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo on conf.py.tmpl #5495

Merged
merged 1 commit into from Mar 19, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions readthedocs/doc_builder/templates/doc_builder/conf.py.tmpl
Expand Up @@ -154,7 +154,7 @@ chinese = any([
project_language in ('zh_CN', 'zh_TW'),
])

japanase = any([
japanese = any([
language_user == 'ja',
project_language == 'ja',
])
Expand All @@ -171,7 +171,7 @@ if chinese:
'preamble': '\\usepackage[UTF8]{ctex}\n',
}
latex_elements = latex_elements_user or latex_elements_rtd
elif japanase:
elif japanese:
latex_engine = latex_engine_user or 'platex'
latex_use_xindy = False
{% endif %}