markup/goldmark: Unify some code block tests
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 26 Feb 2022 10:27:54 +0000 (11:27 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 26 Feb 2022 20:54:36 +0000 (21:54 +0100)
markup/goldmark/codeblocks/integration_test.go
markup/goldmark/integration_test.go

index 0c9039cec68b3649f761b291ec177e9b74850df0..01510fc81035f197127661b979ea811e86f0dd1f 100644 (file)
@@ -14,7 +14,6 @@
 package codeblocks_test
 
 import (
-       "strings"
        "testing"
 
        "github.com/gohugoio/hugo/hugolib"
@@ -54,25 +53,25 @@ title: "p1"
 
 ## Ascii Diagram
 
-CODE_FENCEgoat { width="600" }
+§§§goat { width="600" }
 --->
-CODE_FENCE
+§§§
 
 ## Go Code
 
-CODE_FENCEgo
+§§§go
 fmt.Println("Hello, World!");
-CODE_FENCE
+§§§
 
 ## Golang Code
 
-CODE_FENCEgolang
+§§§golang
 fmt.Println("Hello, Golang!");
-CODE_FENCE
+§§§
 
 ## Bash Code
 
-CODE_FENCEbash { linenos=inline,hl_lines=[2,"5-6"],linenostart=32 class=blue }
+§§§bash { linenos=inline,hl_lines=[2,"5-6"],linenostart=32 class=blue }
 echo "l1";
 echo "l2";
 echo "l3";
@@ -81,11 +80,9 @@ echo "l5";
 echo "l6";
 echo "l7";
 echo "l8";
-CODE_FENCE
+§§§
 `
 
-       files = strings.ReplaceAll(files, "CODE_FENCE", "```")
-
        b := hugolib.NewIntegrationTestBuilder(
                hugolib.IntegrationTestConfig{
                        T:           t,
index f1fa745c5ae08f1557d93dd40f6708c22bf1b93a..16705ad62903fb714be6df70db3ef798a65712cd 100644 (file)
@@ -250,9 +250,6 @@ LINE8
 
 `
 
-       // Code fences
-       files = strings.ReplaceAll(files, "§§§", "```")
-
        b := hugolib.NewIntegrationTestBuilder(
                hugolib.IntegrationTestConfig{
                        T:           t,