You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

2.8 KiB

+++ title = "Image links" date = 2017-07-15T07:49:44-04:00 tags = ["image"] draft = false +++

This is some text before the first heading of this post.

Unclickable image (works!)

{{

}}


To be fixed (Now fixed): The sub-headings in a post get exported as Heading 1 instead of Heading 2.

For example, this sub-section's heading is exported as:

# Unclickable image

instead of

## Unclickable image

Solution: Above is fixed by setting HUGO_OFFSET_LEVEL to 1.

So the sub-heading title and the post title both get the Heading 1 tag and look the same size.

Click here to see the unicorn

Clickable image that opens the image (works!)

Click below image to jump to the unicorn image. {{

}}

  • NOTE: file: has to be used in both Link and Description components of the Org link.

Image with ATTR_HTML Issue # 17

{{

}}

Discussion

{{

}}

If you link to files outside of the Hugo static directory, ensure that the path contains /static/ if you would like to preserve the directory structure.

Example translations between outside static directory paths to the copied location inside static:

Outside static Copied-to location inside static Explanation
~/temp/static/images/foo.png <HUGO_BASE_DIR>/static/images/foo.png If the outside path has /static/ in it, the directory structure after that is preserved when copied.
~/temp/static/img/foo.png <HUGO_BASE_DIR>/static/img/foo.png (same as above)
~/temp/static/foo.png <HUGO_BASE_DIR>/static/foo.png (same as above)
~/temp/static/articles/zoo.pdf <HUGO_BASE_DIR>/static/articles/zoo.pdf (same as above)
~/temp/bar/baz/foo.png <HUGO_BASE_DIR>/static/foo.png Here, as the outside path does not have /static/, the file is copied directly into the Hugo static/ directory.