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""" 

2@file 

3@brief Backend API for sphinx directive *image*. 

4""" 

5 

6 

7class Backend(object): 

8 """ 

9 Backend API for sphinx directive *image*. 

10 """ 

11 STATIC_FILES = () 

12 

13 def __init__(self, app): 

14 self._app = app 

15 

16 def visit_image_node_fallback(self, writer, node): 

17 "translator method" 

18 writer.visit_image(node) 

19 

20 def depart_image_node_fallback(self, writer, node): 

21 "translator method" 

22 writer.depart_image(node)