Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/chipzoller/hugo-clarity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Boothe <git@rootwork.org>2022-06-11 00:34:37 +0300
committerIvan Boothe <git@rootwork.org>2022-06-11 00:34:37 +0300
commit9eae1ae81ca4b52160fef9706d81b18df50e099a (patch)
tree8c414a17659aa0843c94eafd57a9f7b4b73ed0d1 /exampleSite
parentb387006a1dcefb26a1546986c27ff90f3a3a2996 (diff)
Ensuring image functions read configurable imagesDir path
Signed-off-by: Ivan Boothe <git@rootwork.org>
Diffstat (limited to 'exampleSite')
-rw-r--r--exampleSite/content/post/markdown-syntax.md4
-rw-r--r--exampleSite/content/post/markdown-syntax.pt.md4
-rw-r--r--exampleSite/content/post/notices.md4
3 files changed, 6 insertions, 6 deletions
diff --git a/exampleSite/content/post/markdown-syntax.md b/exampleSite/content/post/markdown-syntax.md
index 4e9245b..c9b8062 100644
--- a/exampleSite/content/post/markdown-syntax.md
+++ b/exampleSite/content/post/markdown-syntax.md
@@ -46,7 +46,7 @@ Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sap
The following image is located within the Hugo site. Because it has alt text but no title text, the caption is generated by the alt text.
-![Jane Doe](/images/jane-doe.png)
+![Jane Doe](../images/jane-doe.png)
### Remote image, specified caption
@@ -58,7 +58,7 @@ The following image is loaded from a remote URL. The alt text is the same (for s
Alt text is always recommended for SEO, accessibility and in cases when images don't load. However, you don't necessarily always want an image to have a caption. In that case, use a title with one space:
-![A building](/images/building.png " ")
+![A building](../images/building.png " ")
## Blockquotes
diff --git a/exampleSite/content/post/markdown-syntax.pt.md b/exampleSite/content/post/markdown-syntax.pt.md
index 74a6293..695235a 100644
--- a/exampleSite/content/post/markdown-syntax.pt.md
+++ b/exampleSite/content/post/markdown-syntax.pt.md
@@ -51,7 +51,7 @@ Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sap
The following image is located within the Hugo site. Because it has alt text but no title text, the caption is generated by the alt text.
-![Jane Doe](/images/jane-doe.png)
+![Jane Doe](../images/jane-doe.png)
### Remote image, specified caption
@@ -63,7 +63,7 @@ The following image is loaded from a remote URL. The alt text is the same (for s
Alt text is always recommended for SEO, accessibility and in cases when images don't load. However, you don't necessarily always want an image to have a caption. In that case, use a title with one space:
-![A building](/images/building.png " ")
+![A building](../images/building.png " ")
## Blockquotes
diff --git a/exampleSite/content/post/notices.md b/exampleSite/content/post/notices.md
index 34ecd44..cdc18ee 100644
--- a/exampleSite/content/post/notices.md
+++ b/exampleSite/content/post/notices.md
@@ -61,7 +61,7 @@ public void SayHello()
If you're using VS Code for your editing, copy the `.vscode\clarity.code-snippets` file into a `.vscode` root folder on your repo. This will enable you to type
`note` then `<tab>` then choose with up/down arrows which flavor notice you want, then `<tab>` again to provide a title, then `<tab>` to add your content!
-![](/images/Note-Snippet.gif)
+![](../images/Note-Snippet.gif)
To use the snippet, you need to first **enable quickSuggestions for Markdown** (one time only):
@@ -74,4 +74,4 @@ To use the snippet, you need to first **enable quickSuggestions for Markdown** (
}
```
4. Close and save the settings.
-{{% /notice %}} \ No newline at end of file
+{{% /notice %}}