hugo/content/en/hugo-pipes/resource-from-string.md
Bjørn Erik Pedersen b9bd35d72e Squashed 'docs/' content from commit fdea5430f
git-subtree-dir: docs
git-subtree-split: fdea5430f89dfd849d39212abdf5ace0a4763e5a
2019-10-21 10:22:28 +02:00

1 KiB
Executable file

title linkTitle description date publishdate lastmod categories keywords menu weight sections_weight draft
Creating a resource from a string Resource from String Hugo Pipes allows the creation of a resource from a string. 2018-07-14 2018-07-14 2018-07-14
asset management
docs
parent weight
pipes 90
90 90 false

It is possible to create a resource directly from the template using resources.FromString which takes two arguments, the given string and the resource target path.

The following example creates a resource file containing localized variables for every project's languages.

{{ $string := (printf "var rootURL: '%s'; var apiURL: '%s';" (absURL "/") (.Param "API_URL")) }}
{{ $targetPath := "js/vars.js" }}
{{ $vars := $string | resources.FromString $targetPath }}
{{ $global := resources.Get "js/global.js" | resources.Minify }}

<script type="text/javascript" src="{{ $vars.Permalink }}"></script>
<script type="text/javascript" src="{{ $global.Permalink }}"></script>