Skip to content

Commit

Permalink
Ref ticket 3230: Change latex_show_urls config option to inline.
Browse files Browse the repository at this point in the history
The release of sphinx 1.3 caused travis builds to fail. This
commit fixes it.
  • Loading branch information
Prasoon Shukla committed Mar 12, 2015
1 parent 048f583 commit 4bc42d2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions master/docs/conf.py
Expand Up @@ -229,8 +229,11 @@
# If true, show page references after internal links.
# latex_show_pagerefs = False

# If true, show URL addresses after external links.
latex_show_urls = True
# Three possible values for this option (see sphinx config manual) are:
# 1. 'no' – do not display URLs (default)
# 2. 'footnote' – display URLs in footnotes
# 3. 'inline' – display URLs inline in parentheses
latex_show_urls = 'inline'

# Additional stuff for the LaTeX preamble.
# latex_preamble = ''
Expand Down

0 comments on commit 4bc42d2

Please sign in to comment.