You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added parameter to control if files are sorted before being passed to pandoc (#378)
* Added parameter to control if files are sorted before being passed to pandoc
* fix: addressing params ordering comment in PR review
---------
Co-authored-by: Jessica Tegner <jessica@jessicategner.com>
:param bool sandbox: Run pandoc in pandocs own sandbox mode, limiting IO operations in readers and writers to reading the files specified on the command line. Anyone using pandoc on untrusted user input should use this option. Note: This only does something, on pandoc >= 2.15
82
82
(Default value = False)
83
83
84
+
:param str cworkdir: set the current working directory (Default value = None)
85
+
84
86
:returns: converted string (unicode) or an empty string if an outputfile was given
:param bool sandbox: Run pandoc in pandocs own sandbox mode, limiting IO operations in readers and writers to reading the files specified on the command line. Anyone using pandoc on untrusted user input should use this option. Note: This only does something, on pandoc >= 2.15
132
134
(Default value = False)
133
135
136
+
:param str cworkdir: set the current working directory (Default value = None)
137
+
138
+
:param bool sort_files: causes the files to be sorted before being passed to pandoc (Default value = True)
139
+
134
140
:returns: converted string (unicode) or an empty string if an outputfile was given
0 commit comments