github.com/anakojm/hugo-katex@v0.0.0-20231023141351-42d6f5de9c0b/testscripts/commands/hugo__processingstats.txt (about)

     1  cp $SOURCE/resources/testdata/pix.gif content/en/bundle1/pix.gif
     2  cp $SOURCE/resources/testdata/pix.gif content/en/bundle2/pix.gif
     3  cp $SOURCE/resources/testdata/pix.gif content/fr/bundle1/pix.gif
     4  
     5  hugo
     6  
     7  stdout 'Pages.*3.*2'
     8  stdout 'Processed images.*2.*1'
     9  
    10  -- content/en/bundle1/index.md --
    11  -- content/en/bundle2/index.md --
    12  -- content/fr/bundle1/index.md --
    13  -- hugo.toml --
    14  disableKinds = ["taxonomy", "term", "RSS", "sitemap", "robotsTXT", "404"]
    15  baseURL = "https://example.com/"
    16  [languages]
    17      [languages.en]
    18          languageName = "English"
    19          weight = 1
    20          title = "English Title"
    21          contentDir = "content/en"
    22      [languages.fr]
    23          languageName = "French"
    24          weight = 2
    25          title = "French Title"
    26          contentDir = "content/fr"
    27  -- layouts/index.html --
    28  Home.
    29  -- layouts/_default/single.html --
    30  Single.
    31  {{ range .Resources }}
    32  {{ $img := .Resize "3x" }}
    33  Resized: {{ $img.RelPermalink }}
    34  {{ end }}