Hugo Module - Pretty Link
When linking to internal or external resources in Hugo, only plain links were possible. Links are just simple text without any meaningful information, and this always bothered me. After searching and searching again, I couldn’t find the feature I wanted. (Could it be hidden somewhere?)
So, I decided to create it.
Examples #
Let’s take a look at some examples.
Internal Links
Articles on the CraftGears
blog are written in a directory structure like this:
{{< pretty-link href="/posts/2024/12-17__Hugo_Theme_Part1/" >}}

External Links
Here are examples of various external links.
Hugo Blog
It looks like an internal link, but it’s an external link accessed via https
.
{{< pretty-link href="https://craftgears.com/posts/creating-a-hugo-theme-part-5-header-and-footer/" >}}

TailwindCSS
{{< pretty-link href="https://tailwindcss.com/docs/v4-beta#css-first-configuration" >}}

Medium
{{< pretty-link href="https://medium.com/@magstherdev/hugo-in-10-minutes-2dc4ac70ee11" >}}

Gatsby
{{< pretty-link href="https://www.gatsbyjs.com/blog/launch-week-the-latest-updates-to-gatsby-cloud-and-the-gatsby-framework" >}}


Github
{{< pretty-link href="https://github.com/gohugoio/hugo" >}}


Stackoverflow
{{< pretty-link href="https://stackoverflow.com/questions/71452466/how-to-make-a-paragraph-in-hugo" >}}


Youtube
{{< pretty-link href="https://www.youtube.com/watch?v=ekr2nIex040" >}}


Google Docs
{{< pretty-link href="https://docs.google.com/document/d/15-8b3s50bNu-OIcbkhOnT6Icyr-pC2NWBthQAwEEZOg/edit?pli=1&tab=t.0#heading=h.uwtpzkmp9874" >}}
AWS Documents
In cases where there is no thumbnail, only the content will be displayed.
{{< pretty-link href="https://docs.aws.amazon.com/eks/latest/userguide/what-is-eks.html" >}}
How to use #
Detailed instructions can be found at the link below.


Add the following code to your module list in the config/_default/module.toml
file.
[[imports]]
path = "github.com/craftgears/hugo-modules/pretty-link"
Pretty Link Implementation
Add the following code to your assets/scss/main.scss
file.
@import 'pretty-link';
The href argument is the sole parameter for this shortcode. Here’s how to use it:
{{< pretty-link href="/blog/post-1" >}}
{{< pretty-link href="https://github.com/gohugoio/hugo" >}}
- href
- internal: Use a directory structure like
/posts/<path>
- external: Use a full URL like
https://example.org
- internal: Use a directory structure like
Conclusion #
While working on this, I noticed many sites do not adhere to standards.
As a result, some sites do not display properly. I will do my best to provide support upon request.
Please think of pretty-link.scss
as fully customizable since the appearance can vary greatly depending on the theme. Honestly, I am not a CSS expert, so that file is a bit messy.
I simply converted it from TailwindCSS.
This module will likely require continuous updates. I’ll make sure to update this post accordingly.