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

github.com/thingsym/hugo-theme-techdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthingsym <thingsym@gmail.com>2021-10-18 12:29:41 +0300
committerthingsym <thingsym@gmail.com>2021-10-18 12:29:41 +0300
commitf39686f336db1266d2ca477a64b3c30fc169682f (patch)
tree7a69ddecab9e5c518a5b5d6a3c6e3433ea5b8ae3
parent0a79aafad0405b0822b72e3501952a644bcd6d40 (diff)
fix: change to relative link
-rw-r--r--exampleSite/content/sample/_index.md4
-rw-r--r--exampleSite/content/sample/build-in-shortcodes.md2
-rw-r--r--exampleSite/content/sample/markdown-syntax.md4
3 files changed, 5 insertions, 5 deletions
diff --git a/exampleSite/content/sample/_index.md b/exampleSite/content/sample/_index.md
index fa2928d..bf46e8f 100644
--- a/exampleSite/content/sample/_index.md
+++ b/exampleSite/content/sample/_index.md
@@ -98,12 +98,12 @@ inline code `#ffce44`
## Image
-![2 People Sitting With View of Yellow Flowers during Daytime](/images/pexels-photo-196666.jpeg "sample")
+![2 People Sitting With View of Yellow Flowers during Daytime](../images/pexels-photo-196666.jpeg "sample")
## Image with link
-[![2 People Sitting With View of Yellow Flowers during Daytime](/images/pexels-photo-196666.jpeg)](https://www.pexels.com/photo/2-people-sitting-with-view-of-yellow-flowers-during-daytime-196666/)
+[![2 People Sitting With View of Yellow Flowers during Daytime](../images/pexels-photo-196666.jpeg)](https://www.pexels.com/photo/2-people-sitting-with-view-of-yellow-flowers-during-daytime-196666/)
## Definition Lists
diff --git a/exampleSite/content/sample/build-in-shortcodes.md b/exampleSite/content/sample/build-in-shortcodes.md
index d1fc21c..660df7f 100644
--- a/exampleSite/content/sample/build-in-shortcodes.md
+++ b/exampleSite/content/sample/build-in-shortcodes.md
@@ -11,7 +11,7 @@ See https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcod
## figure
-{{< figure src="/images/pexels-photo-196666.jpeg" title="2 People Sitting With View of Yellow Flowers during Daytime" >}}
+{{< figure src="../images/pexels-photo-196666.jpeg" title="2 People Sitting With View of Yellow Flowers during Daytime" >}}
## gist
diff --git a/exampleSite/content/sample/markdown-syntax.md b/exampleSite/content/sample/markdown-syntax.md
index 8d1628f..a16f4ed 100644
--- a/exampleSite/content/sample/markdown-syntax.md
+++ b/exampleSite/content/sample/markdown-syntax.md
@@ -108,14 +108,14 @@ puts 'The best way to log and share programmers knowledge.'
## Images
```markdown
-![2 People Sitting With View of Yellow Flowers during Daytime](/images/pexels-photo-196666.jpeg "sample")
+![2 People Sitting With View of Yellow Flowers during Daytime](../images/pexels-photo-196666.jpeg "sample")
```
## Image with link
```markdown
-[![2 People Sitting With View of Yellow Flowers during Daytime](/images/pexels-photo-196666.jpeg)](https://www.pexels.com/photo/2-people-sitting-with-view-of-yellow-flowers-during-daytime-196666/)
+[![2 People Sitting With View of Yellow Flowers during Daytime](../images/pexels-photo-196666.jpeg)](https://www.pexels.com/photo/2-people-sitting-with-view-of-yellow-flowers-during-daytime-196666/)
```
## Definition Lists