generated from LCAS/ros2_pkg_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjupyter_nbconvert_config.py
2976 lines (2328 loc) · 121 KB
/
jupyter_nbconvert_config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Configuration file for jupyter-nbconvert.
c = get_config() #noqa
#------------------------------------------------------------------------------
# Application(SingletonConfigurable) configuration
#------------------------------------------------------------------------------
## This is an application.
## The date format used by logging formatters for %(asctime)s
# Default: '%Y-%m-%d %H:%M:%S'
# c.Application.log_datefmt = '%Y-%m-%d %H:%M:%S'
## The Logging format template
# Default: '[%(name)s]%(highlevel)s %(message)s'
# c.Application.log_format = '[%(name)s]%(highlevel)s %(message)s'
## Set the log level by value or name.
# Choices: any of [0, 10, 20, 30, 40, 50, 'DEBUG', 'INFO', 'WARN', 'ERROR', 'CRITICAL']
# Default: 30
# c.Application.log_level = 30
## Configure additional log handlers.
#
# The default stderr logs handler is configured by the log_level, log_datefmt
# and log_format settings.
#
# This configuration can be used to configure additional handlers (e.g. to
# output the log to a file) or for finer control over the default handlers.
#
# If provided this should be a logging configuration dictionary, for more
# information see:
# https://docs.python.org/3/library/logging.config.html#logging-config-
# dictschema
#
# This dictionary is merged with the base logging configuration which defines
# the following:
#
# * A logging formatter intended for interactive use called
# ``console``.
# * A logging handler that writes to stderr called
# ``console`` which uses the formatter ``console``.
# * A logger with the name of this application set to ``DEBUG``
# level.
#
# This example adds a new handler that writes to a file:
#
# .. code-block:: python
#
# c.Application.logging_config = {
# 'handlers': {
# 'file': {
# 'class': 'logging.FileHandler',
# 'level': 'DEBUG',
# 'filename': '<path/to/file>',
# }
# },
# 'loggers': {
# '<application-name>': {
# 'level': 'DEBUG',
# # NOTE: if you don't list the default "console"
# # handler here then it will be disabled
# 'handlers': ['console', 'file'],
# },
# }
# }
# Default: {}
# c.Application.logging_config = {}
## Instead of starting the Application, dump configuration to stdout
# Default: False
# c.Application.show_config = False
## Instead of starting the Application, dump configuration to stdout (as JSON)
# Default: False
# c.Application.show_config_json = False
#------------------------------------------------------------------------------
# JupyterApp(Application) configuration
#------------------------------------------------------------------------------
## Base class for Jupyter applications
## Answer yes to any prompts.
# Default: False
# c.JupyterApp.answer_yes = False
## Full path of a config file.
# Default: ''
# c.JupyterApp.config_file = ''
## Specify a config file to load.
# Default: ''
# c.JupyterApp.config_file_name = ''
## Generate default config file.
# Default: False
# c.JupyterApp.generate_config = False
## The date format used by logging formatters for %(asctime)s
# See also: Application.log_datefmt
# c.JupyterApp.log_datefmt = '%Y-%m-%d %H:%M:%S'
## The Logging format template
# See also: Application.log_format
# c.JupyterApp.log_format = '[%(name)s]%(highlevel)s %(message)s'
## Set the log level by value or name.
# See also: Application.log_level
# c.JupyterApp.log_level = 30
##
# See also: Application.logging_config
# c.JupyterApp.logging_config = {}
## Instead of starting the Application, dump configuration to stdout
# See also: Application.show_config
# c.JupyterApp.show_config = False
## Instead of starting the Application, dump configuration to stdout (as JSON)
# See also: Application.show_config_json
# c.JupyterApp.show_config_json = False
#------------------------------------------------------------------------------
# NbConvertApp(JupyterApp) configuration
#------------------------------------------------------------------------------
## This application is used to convert notebook files (*.ipynb)
# to various other formats.
#
# WARNING: THE COMMANDLINE INTERFACE MAY CHANGE IN FUTURE RELEASES.
## Answer yes to any prompts.
# See also: JupyterApp.answer_yes
# c.NbConvertApp.answer_yes = False
## Full path of a config file.
# See also: JupyterApp.config_file
# c.NbConvertApp.config_file = ''
## Specify a config file to load.
# See also: JupyterApp.config_file_name
# c.NbConvertApp.config_file_name = ''
## The export format to be used, either one of the built-in formats
# ['asciidoc', 'custom', 'html', 'latex', 'markdown', 'notebook', 'pdf', 'python', 'qtpdf', 'qtpng', 'rst', 'script', 'slides', 'webpdf']
# or a dotted object name that represents the import path for an
# ``Exporter`` class
# Default: ''
# c.NbConvertApp.export_format = ''
## read a single notebook from stdin.
# Default: False
# c.NbConvertApp.from_stdin = False
## Generate default config file.
# See also: JupyterApp.generate_config
# c.NbConvertApp.generate_config = False
## The date format used by logging formatters for %(asctime)s
# See also: Application.log_datefmt
# c.NbConvertApp.log_datefmt = '%Y-%m-%d %H:%M:%S'
## The Logging format template
# See also: Application.log_format
# c.NbConvertApp.log_format = '[%(name)s]%(highlevel)s %(message)s'
## Set the log level by value or name.
# See also: Application.log_level
# c.NbConvertApp.log_level = 30
##
# See also: Application.logging_config
# c.NbConvertApp.logging_config = {}
## List of notebooks to convert.
# Wildcards are supported.
# Filenames passed positionally will be added to the list.
# Default: []
# c.NbConvertApp.notebooks = []
## Overwrite base name use for output files.
# Supports pattern replacements '{notebook_name}'.
# Default: '{notebook_name}'
# c.NbConvertApp.output_base = '{notebook_name}'
## Directory to copy extra files (figures) to.
# '{notebook_name}' in the string will be converted to notebook
# basename.
# Default: '{notebook_name}_files'
# c.NbConvertApp.output_files_dir = '{notebook_name}_files'
## PostProcessor class used to write the
# results of the conversion
# Default: ''
# c.NbConvertApp.postprocessor_class = ''
## set the 'recursive' option for glob for searching wildcards.
# Default: False
# c.NbConvertApp.recursive_glob = False
## Instead of starting the Application, dump configuration to stdout
# See also: Application.show_config
# c.NbConvertApp.show_config = False
## Instead of starting the Application, dump configuration to stdout (as JSON)
# See also: Application.show_config_json
# c.NbConvertApp.show_config_json = False
## Whether to apply a suffix prior to the extension (only relevant
# when converting to notebook format). The suffix is determined by
# the exporter, and is usually '.nbconvert'.
# Default: True
# c.NbConvertApp.use_output_suffix = True
## Writer class used to write the
# results of the conversion
# Default: 'FilesWriter'
# c.NbConvertApp.writer_class = 'FilesWriter'
#------------------------------------------------------------------------------
# NbConvertBase(LoggingConfigurable) configuration
#------------------------------------------------------------------------------
## Global configurable class for shared config
#
# Useful for display data priority that might be used by many transformers
## Deprecated default highlight language as of 5.0, please use language_info
# metadata instead
# Default: 'ipython'
# c.NbConvertBase.default_language = 'ipython'
## An ordered list of preferred output type, the first encountered will usually
# be used when converting discarding the others.
# Default: ['text/html', 'application/pdf', 'text/latex', 'image/svg+xml', 'image/png', 'image/jpeg', 'text/markdown', 'text/plain']
# c.NbConvertBase.display_data_priority = ['text/html', 'application/pdf', 'text/latex', 'image/svg+xml', 'image/png', 'image/jpeg', 'text/markdown', 'text/plain']
#------------------------------------------------------------------------------
# Exporter(LoggingConfigurable) configuration
#------------------------------------------------------------------------------
## Class containing methods that sequentially run a list of preprocessors on a
# NotebookNode object and then return the modified NotebookNode object and
# accompanying resources dict.
## List of preprocessors available by default, by name, namespace,
# instance, or type.
# Default: ['nbconvert.preprocessors.TagRemovePreprocessor', 'nbconvert.preprocessors.RegexRemovePreprocessor', 'nbconvert.preprocessors.ClearOutputPreprocessor', 'nbconvert.preprocessors.CoalesceStreamsPreprocessor', 'nbconvert.preprocessors.ExecutePreprocessor', 'nbconvert.preprocessors.SVG2PDFPreprocessor', 'nbconvert.preprocessors.LatexPreprocessor', 'nbconvert.preprocessors.HighlightMagicsPreprocessor', 'nbconvert.preprocessors.ExtractOutputPreprocessor', 'nbconvert.preprocessors.ExtractAttachmentsPreprocessor', 'nbconvert.preprocessors.ClearMetadataPreprocessor']
# c.Exporter.default_preprocessors = ['nbconvert.preprocessors.TagRemovePreprocessor', 'nbconvert.preprocessors.RegexRemovePreprocessor', 'nbconvert.preprocessors.ClearOutputPreprocessor', 'nbconvert.preprocessors.CoalesceStreamsPreprocessor', 'nbconvert.preprocessors.ExecutePreprocessor', 'nbconvert.preprocessors.SVG2PDFPreprocessor', 'nbconvert.preprocessors.LatexPreprocessor', 'nbconvert.preprocessors.HighlightMagicsPreprocessor', 'nbconvert.preprocessors.ExtractOutputPreprocessor', 'nbconvert.preprocessors.ExtractAttachmentsPreprocessor', 'nbconvert.preprocessors.ClearMetadataPreprocessor']
## Disable this exporter (and any exporters inherited from it).
# Default: True
# c.Exporter.enabled = True
## Extension of the file that should be written to disk
# Default: ''
# c.Exporter.file_extension = ''
## Reduces the number of validation steps so that it only occurs after all
# preprocesors have run.
# Default: False
# c.Exporter.optimistic_validation = False
## List of preprocessors, by name or namespace, to enable.
# Default: []
# c.Exporter.preprocessors = []
#------------------------------------------------------------------------------
# TemplateExporter(Exporter) configuration
#------------------------------------------------------------------------------
## Exports notebooks into other file formats. Uses Jinja 2 templating engine to
# output new formats. Inherit from this class if you are creating a new
# template type along with new filters/preprocessors. If the filters/
# preprocessors provided by default suffice, there is no need to inherit from
# this class. Instead, override the template_file and file_extension traits via
# a config file.
#
# Filters available by default for templates:
#
# - add_anchor - add_prompts - ansi2html - ansi2latex - ascii_only -
# citation2latex - clean_html - comment_lines - convert_pandoc - escape_html -
# escape_html_keep_quotes - escape_html_script - escape_latex - filter_data_type
# - get_lines - get_metadata - highlight2html - highlight2latex - html2text -
# indent - ipython2python - json_dumps - markdown2asciidoc - markdown2html -
# markdown2latex - markdown2rst - path2url - posix_path - prevent_list_blocks -
# strip_ansi - strip_dollars - strip_files_prefix - strip_trailing_newline -
# text_base64 - wrap_text
## List of preprocessors available by default, by name, namespace,
# See also: Exporter.default_preprocessors
# c.TemplateExporter.default_preprocessors = ['nbconvert.preprocessors.TagRemovePreprocessor', 'nbconvert.preprocessors.RegexRemovePreprocessor', 'nbconvert.preprocessors.ClearOutputPreprocessor', 'nbconvert.preprocessors.CoalesceStreamsPreprocessor', 'nbconvert.preprocessors.ExecutePreprocessor', 'nbconvert.preprocessors.SVG2PDFPreprocessor', 'nbconvert.preprocessors.LatexPreprocessor', 'nbconvert.preprocessors.HighlightMagicsPreprocessor', 'nbconvert.preprocessors.ExtractOutputPreprocessor', 'nbconvert.preprocessors.ExtractAttachmentsPreprocessor', 'nbconvert.preprocessors.ClearMetadataPreprocessor']
## Disable this exporter (and any exporters inherited from it).
# See also: Exporter.enabled
# c.TemplateExporter.enabled = True
## This allows you to exclude code cells from all templates if set to True.
# Default: False
# c.TemplateExporter.exclude_code_cell = False
## This allows you to exclude code cell inputs from all templates if set to True.
# Default: False
# c.TemplateExporter.exclude_input = False
## This allows you to exclude input prompts from all templates if set to True.
# Default: False
# c.TemplateExporter.exclude_input_prompt = False
## This allows you to exclude markdown cells from all templates if set to True.
# Default: False
# c.TemplateExporter.exclude_markdown = False
## This allows you to exclude code cell outputs from all templates if set to
# True.
# Default: False
# c.TemplateExporter.exclude_output = False
## This allows you to exclude output prompts from all templates if set to True.
# Default: False
# c.TemplateExporter.exclude_output_prompt = False
## This allows you to exclude output of stdin stream from lab template if set to
# True.
# Default: True
# c.TemplateExporter.exclude_output_stdin = True
## This allows you to exclude raw cells from all templates if set to True.
# Default: False
# c.TemplateExporter.exclude_raw = False
## This allows you to exclude unknown cells from all templates if set to True.
# Default: False
# c.TemplateExporter.exclude_unknown = False
# Default: []
# c.TemplateExporter.extra_template_basedirs = []
# Default: []
# c.TemplateExporter.extra_template_paths = []
## Extension of the file that should be written to disk
# See also: Exporter.file_extension
# c.TemplateExporter.file_extension = ''
## Dictionary of filters, by name and namespace, to add to the Jinja
# environment.
# Default: {}
# c.TemplateExporter.filters = {}
## Reduces the number of validation steps so that it only occurs after all
# preprocesors have run.
# See also: Exporter.optimistic_validation
# c.TemplateExporter.optimistic_validation = False
## List of preprocessors, by name or namespace, to enable.
# See also: Exporter.preprocessors
# c.TemplateExporter.preprocessors = []
## formats of raw cells to be included in this Exporter's output.
# Default: []
# c.TemplateExporter.raw_mimetypes = []
# Default: ''
# c.TemplateExporter.template_extension = ''
## Name of the template file to use
# Default: None
# c.TemplateExporter.template_file = None
## Name of the template to use
# Default: ''
# c.TemplateExporter.template_name = ''
# Default: ['.']
# c.TemplateExporter.template_paths = ['.']
#------------------------------------------------------------------------------
# ASCIIDocExporter(TemplateExporter) configuration
#------------------------------------------------------------------------------
## Exports to an ASCIIDoc document (.asciidoc)
## List of preprocessors available by default, by name, namespace,
# See also: Exporter.default_preprocessors
# c.ASCIIDocExporter.default_preprocessors = ['nbconvert.preprocessors.TagRemovePreprocessor', 'nbconvert.preprocessors.RegexRemovePreprocessor', 'nbconvert.preprocessors.ClearOutputPreprocessor', 'nbconvert.preprocessors.CoalesceStreamsPreprocessor', 'nbconvert.preprocessors.ExecutePreprocessor', 'nbconvert.preprocessors.SVG2PDFPreprocessor', 'nbconvert.preprocessors.LatexPreprocessor', 'nbconvert.preprocessors.HighlightMagicsPreprocessor', 'nbconvert.preprocessors.ExtractOutputPreprocessor', 'nbconvert.preprocessors.ExtractAttachmentsPreprocessor', 'nbconvert.preprocessors.ClearMetadataPreprocessor']
## Disable this exporter (and any exporters inherited from it).
# See also: Exporter.enabled
# c.ASCIIDocExporter.enabled = True
## This allows you to exclude code cells from all templates if set to True.
# See also: TemplateExporter.exclude_code_cell
# c.ASCIIDocExporter.exclude_code_cell = False
## This allows you to exclude code cell inputs from all templates if set to True.
# See also: TemplateExporter.exclude_input
# c.ASCIIDocExporter.exclude_input = False
## This allows you to exclude input prompts from all templates if set to True.
# See also: TemplateExporter.exclude_input_prompt
# c.ASCIIDocExporter.exclude_input_prompt = False
## This allows you to exclude markdown cells from all templates if set to True.
# See also: TemplateExporter.exclude_markdown
# c.ASCIIDocExporter.exclude_markdown = False
## This allows you to exclude code cell outputs from all templates if set to
# True.
# See also: TemplateExporter.exclude_output
# c.ASCIIDocExporter.exclude_output = False
## This allows you to exclude output prompts from all templates if set to True.
# See also: TemplateExporter.exclude_output_prompt
# c.ASCIIDocExporter.exclude_output_prompt = False
## This allows you to exclude output of stdin stream from lab template if set to
# True.
# See also: TemplateExporter.exclude_output_stdin
# c.ASCIIDocExporter.exclude_output_stdin = True
## This allows you to exclude raw cells from all templates if set to True.
# See also: TemplateExporter.exclude_raw
# c.ASCIIDocExporter.exclude_raw = False
## This allows you to exclude unknown cells from all templates if set to True.
# See also: TemplateExporter.exclude_unknown
# c.ASCIIDocExporter.exclude_unknown = False
# See also: TemplateExporter.extra_template_basedirs
# c.ASCIIDocExporter.extra_template_basedirs = []
# See also: TemplateExporter.extra_template_paths
# c.ASCIIDocExporter.extra_template_paths = []
## Extension of the file that should be written to disk
# See also: Exporter.file_extension
# c.ASCIIDocExporter.file_extension = ''
## Dictionary of filters, by name and namespace, to add to the Jinja
# See also: TemplateExporter.filters
# c.ASCIIDocExporter.filters = {}
## Reduces the number of validation steps so that it only occurs after all
# preprocesors have run.
# See also: Exporter.optimistic_validation
# c.ASCIIDocExporter.optimistic_validation = False
## List of preprocessors, by name or namespace, to enable.
# See also: Exporter.preprocessors
# c.ASCIIDocExporter.preprocessors = []
## formats of raw cells to be included in this Exporter's output.
# See also: TemplateExporter.raw_mimetypes
# c.ASCIIDocExporter.raw_mimetypes = []
# See also: TemplateExporter.template_extension
# c.ASCIIDocExporter.template_extension = ''
## Name of the template file to use
# See also: TemplateExporter.template_file
# c.ASCIIDocExporter.template_file = None
## Name of the template to use
# See also: TemplateExporter.template_name
# c.ASCIIDocExporter.template_name = ''
# See also: TemplateExporter.template_paths
# c.ASCIIDocExporter.template_paths = ['.']
#------------------------------------------------------------------------------
# HTMLExporter(TemplateExporter) configuration
#------------------------------------------------------------------------------
## Exports a basic HTML document. This exporter assists with the export of HTML.
# Inherit from it if you are writing your own HTML template and need custom
# preprocessors/filters. If you don't need custom preprocessors/ filters, just
# change the 'template_file' config option.
## The text used as the text for anchor links.
# Default: '¶'
# c.HTMLExporter.anchor_link_text = '¶'
## List of preprocessors available by default, by name, namespace,
# See also: Exporter.default_preprocessors
# c.HTMLExporter.default_preprocessors = ['nbconvert.preprocessors.TagRemovePreprocessor', 'nbconvert.preprocessors.RegexRemovePreprocessor', 'nbconvert.preprocessors.ClearOutputPreprocessor', 'nbconvert.preprocessors.CoalesceStreamsPreprocessor', 'nbconvert.preprocessors.ExecutePreprocessor', 'nbconvert.preprocessors.SVG2PDFPreprocessor', 'nbconvert.preprocessors.LatexPreprocessor', 'nbconvert.preprocessors.HighlightMagicsPreprocessor', 'nbconvert.preprocessors.ExtractOutputPreprocessor', 'nbconvert.preprocessors.ExtractAttachmentsPreprocessor', 'nbconvert.preprocessors.ClearMetadataPreprocessor']
## Whether or not to embed images as base64 in markdown cells.
# Default: False
# c.HTMLExporter.embed_images = False
## Disable this exporter (and any exporters inherited from it).
# See also: Exporter.enabled
# c.HTMLExporter.enabled = True
## If anchor links should be included or not.
# Default: False
# c.HTMLExporter.exclude_anchor_links = False
## This allows you to exclude code cells from all templates if set to True.
# See also: TemplateExporter.exclude_code_cell
# c.HTMLExporter.exclude_code_cell = False
## This allows you to exclude code cell inputs from all templates if set to True.
# See also: TemplateExporter.exclude_input
# c.HTMLExporter.exclude_input = False
## This allows you to exclude input prompts from all templates if set to True.
# See also: TemplateExporter.exclude_input_prompt
# c.HTMLExporter.exclude_input_prompt = False
## This allows you to exclude markdown cells from all templates if set to True.
# See also: TemplateExporter.exclude_markdown
# c.HTMLExporter.exclude_markdown = False
## This allows you to exclude code cell outputs from all templates if set to
# True.
# See also: TemplateExporter.exclude_output
# c.HTMLExporter.exclude_output = False
## This allows you to exclude output prompts from all templates if set to True.
# See also: TemplateExporter.exclude_output_prompt
# c.HTMLExporter.exclude_output_prompt = False
## This allows you to exclude output of stdin stream from lab template if set to
# True.
# See also: TemplateExporter.exclude_output_stdin
# c.HTMLExporter.exclude_output_stdin = True
## This allows you to exclude raw cells from all templates if set to True.
# See also: TemplateExporter.exclude_raw
# c.HTMLExporter.exclude_raw = False
## This allows you to exclude unknown cells from all templates if set to True.
# See also: TemplateExporter.exclude_unknown
# c.HTMLExporter.exclude_unknown = False
# See also: TemplateExporter.extra_template_basedirs
# c.HTMLExporter.extra_template_basedirs = []
# See also: TemplateExporter.extra_template_paths
# c.HTMLExporter.extra_template_paths = []
## Extension of the file that should be written to disk
# See also: Exporter.file_extension
# c.HTMLExporter.file_extension = ''
## Dictionary of filters, by name and namespace, to add to the Jinja
# See also: TemplateExporter.filters
# c.HTMLExporter.filters = {}
## Semver range for Jupyter widgets HTML manager
# Default: '*'
# c.HTMLExporter.html_manager_semver_range = '*'
## URL to load jQuery from.
#
# Defaults to loading from cdnjs.
# Default: 'https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js'
# c.HTMLExporter.jquery_url = 'https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js'
## URL base for Jupyter widgets
# Default: 'https://unpkg.com/'
# c.HTMLExporter.jupyter_widgets_base_url = 'https://unpkg.com/'
## Language code of the content, should be one of the ISO639-1
# Default: 'en'
# c.HTMLExporter.language_code = 'en'
## Options to be passed to the pygments lexer for highlighting markdown code
# blocks. See https://pygments.org/docs/lexers/#available-lexers for available
# options.
# Default: {}
# c.HTMLExporter.lexer_options = {}
## URL to load Mathjax from.
#
# Defaults to loading from cdnjs.
# Default: 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe'
# c.HTMLExporter.mathjax_url = 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe'
## Reduces the number of validation steps so that it only occurs after all
# preprocesors have run.
# See also: Exporter.optimistic_validation
# c.HTMLExporter.optimistic_validation = False
## List of preprocessors, by name or namespace, to enable.
# See also: Exporter.preprocessors
# c.HTMLExporter.preprocessors = []
## formats of raw cells to be included in this Exporter's output.
# See also: TemplateExporter.raw_mimetypes
# c.HTMLExporter.raw_mimetypes = []
## URL to load require.js from.
#
# Defaults to loading from cdnjs.
# Default: 'https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js'
# c.HTMLExporter.require_js_url = 'https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js'
## Whether the HTML in Markdown cells and cell outputs should be sanitized.This
# should be set to True by nbviewer or similar tools.
# Default: False
# c.HTMLExporter.sanitize_html = False
## Whether the svg to image data attribute encoding should occur
# Default: False
# c.HTMLExporter.skip_svg_encoding = False
# See also: TemplateExporter.template_extension
# c.HTMLExporter.template_extension = ''
## Name of the template file to use
# See also: TemplateExporter.template_file
# c.HTMLExporter.template_file = None
## Name of the template to use
# See also: TemplateExporter.template_name
# c.HTMLExporter.template_name = ''
# See also: TemplateExporter.template_paths
# c.HTMLExporter.template_paths = ['.']
## Template specific theme(e.g. the name of a JupyterLab CSS theme distributed as
# prebuilt extension for the lab template)
# Default: 'light'
# c.HTMLExporter.theme = 'light'
## Full URL for Jupyter widgets
# Default: ''
# c.HTMLExporter.widget_renderer_url = ''
#------------------------------------------------------------------------------
# LatexExporter(TemplateExporter) configuration
#------------------------------------------------------------------------------
## Exports to a Latex template. Inherit from this class if your template is
# LaTeX based and you need custom transformers/filters. If you don't need custom
# transformers/filters, just change the 'template_file' config option. Place
# your template in the special "/latex" subfolder of the "../templates" folder.
## List of preprocessors available by default, by name, namespace,
# See also: Exporter.default_preprocessors
# c.LatexExporter.default_preprocessors = ['nbconvert.preprocessors.TagRemovePreprocessor', 'nbconvert.preprocessors.RegexRemovePreprocessor', 'nbconvert.preprocessors.ClearOutputPreprocessor', 'nbconvert.preprocessors.CoalesceStreamsPreprocessor', 'nbconvert.preprocessors.ExecutePreprocessor', 'nbconvert.preprocessors.SVG2PDFPreprocessor', 'nbconvert.preprocessors.LatexPreprocessor', 'nbconvert.preprocessors.HighlightMagicsPreprocessor', 'nbconvert.preprocessors.ExtractOutputPreprocessor', 'nbconvert.preprocessors.ExtractAttachmentsPreprocessor', 'nbconvert.preprocessors.ClearMetadataPreprocessor']
## Disable this exporter (and any exporters inherited from it).
# See also: Exporter.enabled
# c.LatexExporter.enabled = True
## This allows you to exclude code cells from all templates if set to True.
# See also: TemplateExporter.exclude_code_cell
# c.LatexExporter.exclude_code_cell = False
## This allows you to exclude code cell inputs from all templates if set to True.
# See also: TemplateExporter.exclude_input
# c.LatexExporter.exclude_input = False
## This allows you to exclude input prompts from all templates if set to True.
# See also: TemplateExporter.exclude_input_prompt
# c.LatexExporter.exclude_input_prompt = False
## This allows you to exclude markdown cells from all templates if set to True.
# See also: TemplateExporter.exclude_markdown
# c.LatexExporter.exclude_markdown = False
## This allows you to exclude code cell outputs from all templates if set to
# True.
# See also: TemplateExporter.exclude_output
# c.LatexExporter.exclude_output = False
## This allows you to exclude output prompts from all templates if set to True.
# See also: TemplateExporter.exclude_output_prompt
# c.LatexExporter.exclude_output_prompt = False
## This allows you to exclude output of stdin stream from lab template if set to
# True.
# See also: TemplateExporter.exclude_output_stdin
# c.LatexExporter.exclude_output_stdin = True
## This allows you to exclude raw cells from all templates if set to True.
# See also: TemplateExporter.exclude_raw
# c.LatexExporter.exclude_raw = False
## This allows you to exclude unknown cells from all templates if set to True.
# See also: TemplateExporter.exclude_unknown
# c.LatexExporter.exclude_unknown = False
# See also: TemplateExporter.extra_template_basedirs
# c.LatexExporter.extra_template_basedirs = []
# See also: TemplateExporter.extra_template_paths
# c.LatexExporter.extra_template_paths = []
## Extension of the file that should be written to disk
# See also: Exporter.file_extension
# c.LatexExporter.file_extension = ''
## Dictionary of filters, by name and namespace, to add to the Jinja
# See also: TemplateExporter.filters
# c.LatexExporter.filters = {}
## Reduces the number of validation steps so that it only occurs after all
# preprocesors have run.
# See also: Exporter.optimistic_validation
# c.LatexExporter.optimistic_validation = False
## List of preprocessors, by name or namespace, to enable.
# See also: Exporter.preprocessors
# c.LatexExporter.preprocessors = []
## formats of raw cells to be included in this Exporter's output.
# See also: TemplateExporter.raw_mimetypes
# c.LatexExporter.raw_mimetypes = []
# See also: TemplateExporter.template_extension
# c.LatexExporter.template_extension = ''
## Name of the template file to use
# See also: TemplateExporter.template_file
# c.LatexExporter.template_file = None
## Name of the template to use
# See also: TemplateExporter.template_name
# c.LatexExporter.template_name = ''
# See also: TemplateExporter.template_paths
# c.LatexExporter.template_paths = ['.']
#------------------------------------------------------------------------------
# MarkdownExporter(TemplateExporter) configuration
#------------------------------------------------------------------------------
## Exports to a markdown document (.md)
## List of preprocessors available by default, by name, namespace,
# See also: Exporter.default_preprocessors
# c.MarkdownExporter.default_preprocessors = ['nbconvert.preprocessors.TagRemovePreprocessor', 'nbconvert.preprocessors.RegexRemovePreprocessor', 'nbconvert.preprocessors.ClearOutputPreprocessor', 'nbconvert.preprocessors.CoalesceStreamsPreprocessor', 'nbconvert.preprocessors.ExecutePreprocessor', 'nbconvert.preprocessors.SVG2PDFPreprocessor', 'nbconvert.preprocessors.LatexPreprocessor', 'nbconvert.preprocessors.HighlightMagicsPreprocessor', 'nbconvert.preprocessors.ExtractOutputPreprocessor', 'nbconvert.preprocessors.ExtractAttachmentsPreprocessor', 'nbconvert.preprocessors.ClearMetadataPreprocessor']
## Disable this exporter (and any exporters inherited from it).
# See also: Exporter.enabled
# c.MarkdownExporter.enabled = True
## This allows you to exclude code cells from all templates if set to True.
# See also: TemplateExporter.exclude_code_cell
# c.MarkdownExporter.exclude_code_cell = False
## This allows you to exclude code cell inputs from all templates if set to True.
# See also: TemplateExporter.exclude_input
# c.MarkdownExporter.exclude_input = False
## This allows you to exclude input prompts from all templates if set to True.
# See also: TemplateExporter.exclude_input_prompt
# c.MarkdownExporter.exclude_input_prompt = False
## This allows you to exclude markdown cells from all templates if set to True.
# See also: TemplateExporter.exclude_markdown
# c.MarkdownExporter.exclude_markdown = False
## This allows you to exclude code cell outputs from all templates if set to
# True.
# See also: TemplateExporter.exclude_output
# c.MarkdownExporter.exclude_output = False
## This allows you to exclude output prompts from all templates if set to True.
# See also: TemplateExporter.exclude_output_prompt
# c.MarkdownExporter.exclude_output_prompt = False
## This allows you to exclude output of stdin stream from lab template if set to
# True.
# See also: TemplateExporter.exclude_output_stdin
# c.MarkdownExporter.exclude_output_stdin = True
## This allows you to exclude raw cells from all templates if set to True.
# See also: TemplateExporter.exclude_raw
# c.MarkdownExporter.exclude_raw = False
## This allows you to exclude unknown cells from all templates if set to True.
# See also: TemplateExporter.exclude_unknown
# c.MarkdownExporter.exclude_unknown = False
# See also: TemplateExporter.extra_template_basedirs
# c.MarkdownExporter.extra_template_basedirs = []
# See also: TemplateExporter.extra_template_paths
# c.MarkdownExporter.extra_template_paths = []
## Extension of the file that should be written to disk
# See also: Exporter.file_extension
# c.MarkdownExporter.file_extension = ''
## Dictionary of filters, by name and namespace, to add to the Jinja
# See also: TemplateExporter.filters
# c.MarkdownExporter.filters = {}
## Reduces the number of validation steps so that it only occurs after all
# preprocesors have run.
# See also: Exporter.optimistic_validation
# c.MarkdownExporter.optimistic_validation = False
## List of preprocessors, by name or namespace, to enable.
# See also: Exporter.preprocessors
# c.MarkdownExporter.preprocessors = []
## formats of raw cells to be included in this Exporter's output.
# See also: TemplateExporter.raw_mimetypes
# c.MarkdownExporter.raw_mimetypes = []
# See also: TemplateExporter.template_extension
# c.MarkdownExporter.template_extension = ''
## Name of the template file to use
# See also: TemplateExporter.template_file
# c.MarkdownExporter.template_file = None
## Name of the template to use
# See also: TemplateExporter.template_name
# c.MarkdownExporter.template_name = ''
# See also: TemplateExporter.template_paths
# c.MarkdownExporter.template_paths = ['.']
#------------------------------------------------------------------------------
# NotebookExporter(Exporter) configuration
#------------------------------------------------------------------------------
## Exports to an IPython notebook.
#
# This is useful when you want to use nbconvert's preprocessors to operate on
# a notebook (e.g. to execute it) and then write it back to a notebook file.
## List of preprocessors available by default, by name, namespace,
# See also: Exporter.default_preprocessors
# c.NotebookExporter.default_preprocessors = ['nbconvert.preprocessors.TagRemovePreprocessor', 'nbconvert.preprocessors.RegexRemovePreprocessor', 'nbconvert.preprocessors.ClearOutputPreprocessor', 'nbconvert.preprocessors.CoalesceStreamsPreprocessor', 'nbconvert.preprocessors.ExecutePreprocessor', 'nbconvert.preprocessors.SVG2PDFPreprocessor', 'nbconvert.preprocessors.LatexPreprocessor', 'nbconvert.preprocessors.HighlightMagicsPreprocessor', 'nbconvert.preprocessors.ExtractOutputPreprocessor', 'nbconvert.preprocessors.ExtractAttachmentsPreprocessor', 'nbconvert.preprocessors.ClearMetadataPreprocessor']
## Disable this exporter (and any exporters inherited from it).
# See also: Exporter.enabled
# c.NotebookExporter.enabled = True
## Extension of the file that should be written to disk
# See also: Exporter.file_extension
# c.NotebookExporter.file_extension = ''
## The nbformat version to write.
# Use this to downgrade notebooks.
# Choices: any of [1, 2, 3, 4]
# Default: 4
# c.NotebookExporter.nbformat_version = 4
## Reduces the number of validation steps so that it only occurs after all
# preprocesors have run.
# See also: Exporter.optimistic_validation
# c.NotebookExporter.optimistic_validation = False
## List of preprocessors, by name or namespace, to enable.
# See also: Exporter.preprocessors
# c.NotebookExporter.preprocessors = []
#------------------------------------------------------------------------------
# PDFExporter(LatexExporter) configuration
#------------------------------------------------------------------------------
## Writer designed to write to PDF files.
#
# This inherits from `LatexExporter`. It creates a LaTeX file in
# a temporary directory using the template machinery, and then runs LaTeX
# to create a pdf.
## Shell command used to run bibtex.
# Default: ['bibtex', '{filename}']
# c.PDFExporter.bib_command = ['bibtex', '{filename}']
## List of preprocessors available by default, by name, namespace,
# See also: Exporter.default_preprocessors
# c.PDFExporter.default_preprocessors = ['nbconvert.preprocessors.TagRemovePreprocessor', 'nbconvert.preprocessors.RegexRemovePreprocessor', 'nbconvert.preprocessors.ClearOutputPreprocessor', 'nbconvert.preprocessors.CoalesceStreamsPreprocessor', 'nbconvert.preprocessors.ExecutePreprocessor', 'nbconvert.preprocessors.SVG2PDFPreprocessor', 'nbconvert.preprocessors.LatexPreprocessor', 'nbconvert.preprocessors.HighlightMagicsPreprocessor', 'nbconvert.preprocessors.ExtractOutputPreprocessor', 'nbconvert.preprocessors.ExtractAttachmentsPreprocessor', 'nbconvert.preprocessors.ClearMetadataPreprocessor']
## Disable this exporter (and any exporters inherited from it).
# See also: Exporter.enabled
# c.PDFExporter.enabled = True
## This allows you to exclude code cells from all templates if set to True.
# See also: TemplateExporter.exclude_code_cell
# c.PDFExporter.exclude_code_cell = False
## This allows you to exclude code cell inputs from all templates if set to True.
# See also: TemplateExporter.exclude_input
# c.PDFExporter.exclude_input = False
## This allows you to exclude input prompts from all templates if set to True.
# See also: TemplateExporter.exclude_input_prompt
# c.PDFExporter.exclude_input_prompt = False
## This allows you to exclude markdown cells from all templates if set to True.
# See also: TemplateExporter.exclude_markdown
# c.PDFExporter.exclude_markdown = False
## This allows you to exclude code cell outputs from all templates if set to
# True.
# See also: TemplateExporter.exclude_output
# c.PDFExporter.exclude_output = False
## This allows you to exclude output prompts from all templates if set to True.
# See also: TemplateExporter.exclude_output_prompt
# c.PDFExporter.exclude_output_prompt = False
## This allows you to exclude output of stdin stream from lab template if set to
# True.
# See also: TemplateExporter.exclude_output_stdin
# c.PDFExporter.exclude_output_stdin = True
## This allows you to exclude raw cells from all templates if set to True.
# See also: TemplateExporter.exclude_raw
# c.PDFExporter.exclude_raw = False
## This allows you to exclude unknown cells from all templates if set to True.
# See also: TemplateExporter.exclude_unknown
# c.PDFExporter.exclude_unknown = False
# See also: TemplateExporter.extra_template_basedirs
# c.PDFExporter.extra_template_basedirs = []
# See also: TemplateExporter.extra_template_paths
# c.PDFExporter.extra_template_paths = []
## Extension of the file that should be written to disk
# See also: Exporter.file_extension
# c.PDFExporter.file_extension = ''
## Dictionary of filters, by name and namespace, to add to the Jinja
# See also: TemplateExporter.filters
# c.PDFExporter.filters = {}
## Shell command used to compile latex.
# Default: ['xelatex', '{filename}', '-quiet']
# c.PDFExporter.latex_command = ['xelatex', '{filename}', '-quiet']
## How many times latex will be called.
# Default: 3
# c.PDFExporter.latex_count = 3
## Reduces the number of validation steps so that it only occurs after all
# preprocesors have run.
# See also: Exporter.optimistic_validation
# c.PDFExporter.optimistic_validation = False
## List of preprocessors, by name or namespace, to enable.
# See also: Exporter.preprocessors
# c.PDFExporter.preprocessors = []
## formats of raw cells to be included in this Exporter's output.
# See also: TemplateExporter.raw_mimetypes
# c.PDFExporter.raw_mimetypes = []
# See also: TemplateExporter.template_extension
# c.PDFExporter.template_extension = ''
## Name of the template file to use
# See also: TemplateExporter.template_file
# c.PDFExporter.template_file = None
## Name of the template to use
# See also: TemplateExporter.template_name
# c.PDFExporter.template_name = ''
# See also: TemplateExporter.template_paths
# c.PDFExporter.template_paths = ['.']
## Whether to display the output of latex commands.
# Default: False
# c.PDFExporter.verbose = False
#------------------------------------------------------------------------------
# PythonExporter(TemplateExporter) configuration
#------------------------------------------------------------------------------
## Exports a Python code file. Note that the file produced will have a shebang of
# '#!/usr/bin/env python' regardless of the actual python version used in the
# notebook.
## List of preprocessors available by default, by name, namespace,
# See also: Exporter.default_preprocessors
# c.PythonExporter.default_preprocessors = ['nbconvert.preprocessors.TagRemovePreprocessor', 'nbconvert.preprocessors.RegexRemovePreprocessor', 'nbconvert.preprocessors.ClearOutputPreprocessor', 'nbconvert.preprocessors.CoalesceStreamsPreprocessor', 'nbconvert.preprocessors.ExecutePreprocessor', 'nbconvert.preprocessors.SVG2PDFPreprocessor', 'nbconvert.preprocessors.LatexPreprocessor', 'nbconvert.preprocessors.HighlightMagicsPreprocessor', 'nbconvert.preprocessors.ExtractOutputPreprocessor', 'nbconvert.preprocessors.ExtractAttachmentsPreprocessor', 'nbconvert.preprocessors.ClearMetadataPreprocessor']
## Disable this exporter (and any exporters inherited from it).
# See also: Exporter.enabled
# c.PythonExporter.enabled = True
## This allows you to exclude code cells from all templates if set to True.
# See also: TemplateExporter.exclude_code_cell
# c.PythonExporter.exclude_code_cell = False
## This allows you to exclude code cell inputs from all templates if set to True.
# See also: TemplateExporter.exclude_input
# c.PythonExporter.exclude_input = False
## This allows you to exclude input prompts from all templates if set to True.
# See also: TemplateExporter.exclude_input_prompt
# c.PythonExporter.exclude_input_prompt = False
## This allows you to exclude markdown cells from all templates if set to True.
# See also: TemplateExporter.exclude_markdown
# c.PythonExporter.exclude_markdown = False
## This allows you to exclude code cell outputs from all templates if set to
# True.
# See also: TemplateExporter.exclude_output
# c.PythonExporter.exclude_output = False
## This allows you to exclude output prompts from all templates if set to True.
# See also: TemplateExporter.exclude_output_prompt
# c.PythonExporter.exclude_output_prompt = False