We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e88a74 commit 5813bb0Copy full SHA for 5813bb0
jupyter_book_to_htmlbook/file_processing.py
@@ -14,7 +14,11 @@
14
process_citations,
15
add_glossary_datatypes
16
)
17
-from .code_processing import process_code, process_code_examples
+from .code_processing import (
18
+ process_code,
19
+ process_code_examples,
20
+ process_inline_code
21
+ )
22
from .text_processing import (
23
clean_chapter,
24
move_span_ids_to_sections,
@@ -248,6 +252,7 @@ def process_chapter(toc_element,
248
252
# note: best to run examples before code processing
249
253
chapter = process_code_examples(chapter)
250
254
chapter = process_code(chapter, skip_cell_numbering)
255
+ chapter = process_inline_code(chapter)
251
256
chapter = move_span_ids_to_sections(chapter)
257
chapter = process_sidebars(chapter)
258
chapter = process_subsections(chapter)
0 commit comments