diff options
author | Bjørn Erik Pedersen <[email protected]> | 2020-12-23 09:26:23 +0100 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2020-12-30 17:32:25 +0100 |
commit | cea157402365f34a69882110a4208999728007a6 (patch) | |
tree | bc29f699e7c901c219cffc5f50fba99dca53d5bd /markup/pandoc | |
parent | f9f779786edcefc4449a14cfc04dd93379f71373 (diff) | |
download | hugo-cea157402365f34a69882110a4208999728007a6.tar.gz hugo-cea157402365f34a69882110a4208999728007a6.zip |
Add Dart Sass support
But note that the Dart Sass Embedded Protocol is still in beta (beta 5), a main release scheduled for Q1 2021.
Fixes #7380
Fixes #8102
Diffstat (limited to 'markup/pandoc')
-rw-r--r-- | markup/pandoc/convert.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/markup/pandoc/convert.go b/markup/pandoc/convert.go index 63bab2748..1c25e41d2 100644 --- a/markup/pandoc/convert.go +++ b/markup/pandoc/convert.go @@ -16,6 +16,7 @@ package pandoc import ( "github.com/cli/safeexec" + "github.com/gohugoio/hugo/htesting" "github.com/gohugoio/hugo/identity" "github.com/gohugoio/hugo/markup/internal" @@ -74,5 +75,8 @@ func getPandocExecPath() string { // Supports returns whether Pandoc is installed on this computer. func Supports() bool { + if htesting.SupportsAll() { + return true + } return getPandocExecPath() != "" } |