Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# -*- coding: utf-8 -*- 

2""" 

3sphinxjp.themes.revealjs 

4~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 

5 

6:author: tell-k <ffk2005@gmail.com> 

7:copyright: tell-k. All Rights Reserved. 

8 

9Taken from `github/return42 <https://github.com/return42/sphinxjp.themes.revealjs>`_. 

10""" 

11 

12from os import path 

13from . import directives 

14 

15__version__ = '0.3.1' 

16 

17package_dir = path.abspath(path.dirname(__file__)) 

18template_path = path.join(package_dir, 'templates') 

19 

20 

21def get_path(): 

22 """entry-point for sphinx theme.""" 

23 return template_path # pragma: no cover 

24 

25 

26def setup(app): 

27 """entry-point for sphinx directive.""" 

28 directives.setup(app) # pragma: no cover