Home
last modified time | relevance | path

Searched refs:pandocPath (Results 1 – 12 of 12) sorted by relevance

/dports/textproc/hs-pandoc-crossref/pandoc-crossref-0.3.12.0/_cabal_deps/pandoc-2.11.4/test/Tests/
H A DOld.hs29 tests pandocPath =
225 test' = test pandocPath
239 lhsWriterTests pandocPath format
244 t n f = test pandocPath
250 lhsReaderTest pandocPath format =
258 writerTests pandocPath format
259 = [ test pandocPath
261 , test pandocPath
270 = writerTests pandocPath format ++
272 test pandocPath
[all …]
H A DHelpers.hs107 let pandocPath = pandocDir </> "pandoc" function
111 found <- doesFileExist pandocPath
113 then return pandocPath
115 ++ pandocPath
H A DCommand.hs87 tests pandocPath = unsafePerformIO $ do function
90 let cmds = map (extractCommandTest pandocPath) files
/dports/textproc/hs-pandoc/pandoc-2.14.2/test/Tests/
H A DOld.hs26 tests pandocPath =
225 test' = test pandocPath
239 lhsWriterTests pandocPath format
244 t n f = test pandocPath
250 lhsReaderTest pandocPath format =
258 writerTests pandocPath format
259 = [ test pandocPath
261 , test pandocPath
269 extendedWriterTests pandocPath format
270 = writerTests pandocPath format ++
[all …]
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/
H A DSessionPandoc.cpp43 FilePath pandocPath = session::options().pandocPath().completeChildPath(target); in pandocBinary() local
44 return string_utils::utf8ToSystem(pandocPath.getAbsolutePath()); in pandocBinary()
83 std::string pandocPath() in pandocPath() function
91 pandocPath(), in runPandoc()
103 return runAsync(pandocPath(), prependStackSize(args), input, onCompleted); in runPandocAsync()
/dports/textproc/hs-pandoc-crossref/pandoc-crossref-0.3.12.0/_cabal_deps/pandoc-2.11.4/test/
H A Dtest-pandoc.hs53 tests pandocPath = testGroup "pandoc tests" function
54 [ Tests.Command.tests pandocPath
55 , testGroup "Old" (Tests.Old.tests pandocPath)
/dports/editors/o/o-2.46.0/
H A Dpandoc.go43 func (e *Editor) exportPandoc(c *vt100.Canvas, tty *vt100.TTY, status *StatusBar, pandocPath, pdfFi… argument
82 …pandocCommand := exec.Command(pandocPath, "-fmarkdown-implicit_figures", "--toc", "-Vgeometry:left…
H A Dbuild.go52 if pandocPath := which("pandoc"); e.mode == mode.Markdown && pandocPath != "" {
59 _ = e.exportPandoc(c, tty, status, pandocPath, pdfFilename)
63 _ = e.exportPandoc(c, tty, status, pandocPath, pdfFilename)
/dports/textproc/hs-pandoc/pandoc-2.14.2/test/
H A Dtest-pandoc.hs56 tests pandocPath = testGroup "pandoc tests" function
58 , testGroup "Old" (Tests.Old.tests pandocPath)
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/include/session/
H A DSessionOptions.gen.hpp495 core::FilePath pandocPath() const { return core::FilePath(pandocPath_); } in pandocPath() function in rstudio::session::GeneratedOptions
H A DSessionModuleContext.hpp947 std::string pandocPath();
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/modules/rmarkdown/
H A DSessionRMarkdown.cpp1047 rstudioPandoc = session::options().pandocPath().getAbsolutePath(); in initEnvironment()