|
|
@ -250,3 +250,17 @@ intersphinx_mapping = { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
pygments_style = 'flask_theme_support.FlaskyStyle' |
|
|
|
pygments_style = 'flask_theme_support.FlaskyStyle' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# fall back if theme is not there |
|
|
|
|
|
|
|
try: |
|
|
|
|
|
|
|
__import__('flask_theme_support') |
|
|
|
|
|
|
|
except ImportError, e: |
|
|
|
|
|
|
|
print '-' * 74 |
|
|
|
|
|
|
|
print 'Warning: Flask themes unavailable. Building with default theme' |
|
|
|
|
|
|
|
print 'If you want the Flask themes, run this command and build again:' |
|
|
|
|
|
|
|
print |
|
|
|
|
|
|
|
print ' git submodule init' |
|
|
|
|
|
|
|
print '-' * 74 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pygments_style = 'tango' |
|
|
|
|
|
|
|
html_theme = 'default' |
|
|
|