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 e5e7f85 commit 78e24dbCopy full SHA for 78e24db
diagram-generator/diagram-generator.lua
@@ -16,7 +16,9 @@ PANDOC_VERSION:must_be_at_least '2.7.3'
16
17
local system = require 'pandoc.system'
18
local utils = require 'pandoc.utils'
19
-local stringify = utils.stringify
+local stringify = function (s)
20
+ return type(s) == 'string' and s or utils.stringify(s)
21
+end
22
local with_temporary_directory = system.with_temporary_directory
23
local with_working_directory = system.with_working_directory
24
0 commit comments