Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

a "&:hover" not being applied when extending config #231

Closed
jpanther opened this issue Dec 23, 2021 · 8 comments · Fixed by #246
Closed

a "&:hover" not being applied when extending config #231

jpanther opened this issue Dec 23, 2021 · 8 comments · Fixed by #246

Comments

@jpanther
Copy link

What version of @tailwindcss/typography are you using?

v0.5.0

What version of Node.js are you using?

v17.3.0

What browser are you using?

Safari and Firefox

What operating system are you using?

macOS

Reproduction repository

https://play.tailwindcss.com/Fq1bsNWhQm?file=config

Describe your issue

When using extend in the Tailwind config to customise the typography classes, the "&:hover" variants don't seem to be being applied in the browser. I've tried using the most basic example in the Tailwind docs and even that doesn't work.

module.exports = {
  theme: {
    extend: {
      typography: {
        DEFAULT: {
          css: {
            color: '#000',
            a: {
              color: '#888',
              '&:hover': {
                color: '#FF0000',
              },
            },
          },
        },
      },
    },
  },
  plugins: [
    require('@tailwindcss/typography'),
    // ...
  ],
}

The "Read the docs →" link appears grey as expected, but should be red on hover.

Screen Shot 2021-12-23 at 19 19 08

Inspecting the CSS in the browser shows these styles exist, but when hovering they don't take precedence over the base color definition.

Screen Shot 2021-12-23 at 19 17 29

@alexanderbluhm
Copy link

@jpanther In the mean time you can also use something like prose-a:hover:text-[#b12868] which for me feels a bit more natural than extending the config.

@jpanther
Copy link
Author

@alexanderbluhm Thanks, I haven't explored that method as yet... mainly because I have 60+ customisations in the config which makes it quite cumbersome to have to add them everywhere I'm using prose.

@btjanaka
Copy link

I've been working around this by adding !important, though for use cases more complicated than mine, that's sure to have unintended effects.

jgosmann added a commit to jgosmann/chemie-didaktik-muenster that referenced this issue Dec 28, 2021
@rebelchris
Copy link

Following, guessing this is a bug in the latest version?

I assumed the tailwind config override was neater than applying it in each element that uses the prose class?

@sanderjn
Copy link

Seems like hover styles were removed with the introduction of CSS vars. When you look at the tailwindcss-typography/src/styles.js there is no mention of "hover" at all.

@sklawren
Copy link

sklawren commented Feb 14, 2022

Defining &:hover completely locks up the tailwind build process in Storybook, Gatsby, NextJS, etc.

It has taken me a long time to figure out this was the cause of tailwind locking up after I upgraded to Tailwind 3.

They provide this as an example in the docs, so it's supposed to be supported:
https://tailwindcss.com/docs/typography-plugin#customizing-the-css

For now, I've moved it to my tailwind.css

.prose {
  a {
    @apply hover:underline;
  }
}

@adamwathan This is a pretty serious bug. This completely locks up the tailwind build process. You can't even CTRL+C out. You have to close and reopen the terminal and then run ps aux | grep storybook to find and kill -9 the process (same with Gatsby, NextJS, etc.).

@RobinMalfait
Copy link
Member

Hey! Thank you for your bug report!
Much appreciated! 🙏

@jpanther this will be fixed by #246 and will be available in the next version.
@sklawren I tried to reproduce it with Next.js and it works just fine for me. Can you try and reproduce it and create a new issue with a reproduction attached to it? In the meantime, also try to remove your .next folder and restart your server.

@stevensacks
Copy link

@RobinMalfait It happens in both Storybook and Gatsby. The moment I remove the &:hover config, the problem goes away. If I add it back, it locks up and I have to kill -9 the process.

renzmann added a commit to renzmann/renzmann.github.io that referenced this issue Feb 20, 2022
commit 06b76ea9ab494adef0b1b6b59550986671b5b73d
Author: Robb Enzmann <robbenzmann@gmail.com>
Date:   Sun Feb 20 11:16:57 2022 -0500

    change publish action to hugo

commit 485df96d554b9a5d80b241973126521e52e1ae55
Author: Robb Enzmann <robbenzmann@gmail.com>
Date:   Sun Feb 20 11:16:49 2022 -0500

    ignore resources folder

commit 1b89f1d4598c6561aa9f7b97817f8fa10752c7d4
Author: Robb Enzmann <robbenzmann@gmail.com>
Date:   Sun Feb 20 11:12:25 2022 -0500

    add congo config

commit ee9b744f0cc5f3c7fca97970da42ffee31cded6c
Author: Robb Enzmann <robbenzmann@gmail.com>
Date:   Sun Feb 20 11:11:11 2022 -0500

    get rid of a couple module things

commit 6e56c405313d7203233912a227fc75bc765e1a97
Merge: 55986e5 480492a
Author: Robb Enzmann <robbenzmann@gmail.com>
Date:   Sun Feb 20 09:37:47 2022 -0500

    Add 'themes/congo/' from commit '480492a976a577d5ee563a69b57c7b45b519a23c'

    git-subtree-dir: themes/congo
    git-subtree-mainline: 55986e5bd11a3325a1301c626732c8fb7cb9ae22
    git-subtree-split: 480492a976a577d5ee563a69b57c7b45b519a23c

commit 55986e5bd11a3325a1301c626732c8fb7cb9ae22
Author: Robb Enzmann <robbenzmann@gmail.com>
Date:   Sun Feb 20 09:36:27 2022 -0500

    add hugo parts

commit 34ae3565525c1ef28f7aa5222e688d33d84595d7
Author: Robb Enzmann <robbenzmann@gmail.com>
Date:   Sun Feb 20 09:36:03 2022 -0500

    add readme

commit e70881abfc5d238b293fb801ef24ca88e468edaf
Author: Robb Enzmann <robbenzmann@gmail.com>
Date:   Sun Feb 20 09:16:15 2022 -0500

    start adding some hugo commands

commit eb606ed8ed214fa1c19c7bd7b9094cf8f849b4a3
Author: Robb Enzmann <robbenzmann@gmail.com>
Date:   Sun Feb 20 09:14:50 2022 -0500

    remove org stuff

commit 480492a976a577d5ee563a69b57c7b45b519a23c
Merge: 3930c5b 2ceab5d
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Feb 20 14:42:07 2022 +1100

    🔖 Release v2.0.5

commit 2ceab5d4b0106549a77edcf86d4c40f301282893
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Feb 20 14:42:04 2022 +1100

    🔨 Preparing release v2.0.5

commit d1387f79f8a04ca4fcbb6b376313bdfaf90dd868
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Feb 20 14:36:36 2022 +1100

    🐛 Fix underline styles not displaying correctly

    Fixes #125

commit a55d686fe18695eba2babf9e707d09f78cc8da46
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Feb 20 14:34:38 2022 +1100

    ⬆️ Upgrade dependencies to latest

commit 4ded6858717a26c54b04c0ba4686065c7f177ce7
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Feb 20 14:18:58 2022 +1100

    📝 Add GA v4 detail to analytics docs

commit f42159bfaffcc52b9c4315fcd84629ef97f12f58
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Feb 13 18:38:34 2022 +1100

    📝 Update changelog and docs

commit f97f625329b484c12e0b82035a20c0743aace7d5
Merge: a29efce 070f3cb
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Feb 13 18:25:50 2022 +1100

    🔀 Merge pull request #115 from tarunjana/dev

    :globe_with_meridians: Add BN i18n

commit a29efce7c066c50cb792a96955dc5a7d0a4f63f2
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Feb 13 18:00:38 2022 +1100

    🐛 Fix homepage structrued data unparsable

    Fixes #113

commit a041f09f6f9aabccc85f8f3eeef84b59828080b1
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Feb 13 17:44:30 2022 +1100

    🩹 Fix `.Lastmod` shown when same as `.Date`

commit 070f3cb866486632524eb671a04c559c66e150e3
Author: Tarun Jana <76617446+tarunjana@users.noreply.github.com>
Date:   Sun Feb 13 08:28:42 2022 +0530

    :globe_with_meridians: Add BN i18n

    Add multilingual support for Bengali language

commit 3930c5bc4ff3364f095fa34cafac47c672d445ad
Merge: 56ec1bf e9f5908
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Feb 9 10:22:10 2022 +1100

    🔖 Release v2.0.4

commit e9f59082ded9c0827e204b43066d6a717cc4844f
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Feb 9 10:22:07 2022 +1100

    🔨 Preparing release v2.0.4

commit d9f159bddf7a7984633d8eb0e6244b47002c8aa3
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Feb 9 09:19:57 2022 +1100

    📝 Update changelog

commit 721f90a989362b304f428d9f516edc1d2726999e
Merge: eba52b0 2544d65
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Feb 9 09:17:35 2022 +1100

    🔀 Merge pull request #110 from max-alletsee/patch-1

    Update de.yaml

commit 2544d65b91198af99336188b38e1fd03a734f7a9
Author: Max Alletsee <max.alletsee@gmail.com>
Date:   Tue Feb 8 21:53:13 2022 +0100

    Update de.yaml

    ... to add the new strings introduced since the initial translation

commit eba52b04c84b355cd427dd5d6cd2cf8a59373228
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Feb 8 14:32:28 2022 +1100

    ⬆️ Upgrade to Tailwind v3.0.19

commit 7d6be8a999ab279c05a9b4090175e3735ecab702
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Feb 8 09:00:35 2022 +1100

    🐛 Emojify JSON output for search results

commit 027cdf071de95dbc3038f3a6696391b5dd3d2586
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Feb 8 08:50:06 2022 +1100

    🚸 Clear search results when wrapper dismissed

    Fixes #109

commit d8c2534762da9d0ca989fa52d5c81dafa7582a63
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Feb 7 09:37:59 2022 +1100

    💄 Fix `main` not filling screen vertically

commit 56ec1bf5783c9ce4a89a5951f6e9de1aeb3d3636
Merge: 5380e02 93625b1
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Feb 7 09:12:16 2022 +1100

    🔖 Release v2.0.3

commit 93625b169b1e580dbb20a43a05734492de499c36
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Feb 7 09:12:13 2022 +1100

    🔨 Preparing release v2.0.3

commit 99ccc612cb8db5b820c0bd45d8e287cc9849382c
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Feb 7 09:11:47 2022 +1100

    📝 Update changelog

commit 39c1b7d04a6aba2dfc908a48bce74c5f01045b50
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Feb 6 15:10:59 2022 +1100

    🐛 Fix appearance pref not loading early enough

    Fixes #102

commit 88946105fd1bf664359d3dd3c38222ca277a11fe
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Feb 6 14:46:03 2022 +1100

    ⚰️ Remove redundant appearance parameter check

    Ref #102

commit 37e01d1ea54210b571019675e5796b014f5ae6f6
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Feb 6 11:31:36 2022 +1100

    📝 Update changelog

commit e6466107f2341e9f9bc3461f6b103532a7895049
Merge: d1ce98d 63de297
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Feb 6 11:29:37 2022 +1100

    🔀 Merge pull request #106 from cbelena/dev

    🌐 Update es i18n

commit d1ce98d7b17c9d82e4103cfd6c510f28c079139c
Merge: 60a62e2 4e43a42
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Feb 6 11:28:04 2022 +1100

    🔀 Merge pull request #105 from ZekeriyaAY/dev

    🌐  Update tr i18n

commit 60a62e2b4b30e2a1861b844072d6909f31754347
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Feb 6 11:26:37 2022 +1100

    🚸 Prevent image processing on external URLs

commit 63de2973ce5575c8d79609f5150320898b621d9c
Author: Carlos Beleña <carlos57775@gmail.com>
Date:   Sat Feb 5 22:34:39 2022 +0100

    🌐 Update es i18n

commit 4e43a42406f9265363e208464b5342eb67bc28a6
Author: Zekeriya AY <zekeriya@zekeriyaay.com>
Date:   Sun Feb 6 00:01:40 2022 +0300

    🌐  Update tr i18n

commit 5380e024ecc2aa7254fafecb99dd21268d4ed36b
Merge: b13dea3 dd3606d
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Feb 5 19:42:27 2022 +1100

    🔖 Release v2.0.2

commit dd3606d33d8c9243dc0902c5d1c877aeb9acf0f3
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Feb 5 19:42:23 2022 +1100

    🔨 Preparing release v2.0.2

commit 09d2e410c86a23286101612a05fc8e9b314b030f
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Feb 5 19:19:47 2022 +1100

    🐛 Stop site appearance taking priority over user

    Fixes #102

commit 91b5b52c212f7d079aa869f88b26a520815e0b11
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Feb 5 10:03:34 2022 +1100

    📝 Update changelog

commit 09a09b700f0ff6c462710717f97fceeaad05b3ac
Merge: f8558ac 7d2dd5b
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Feb 5 10:00:49 2022 +1100

    🔀 Merge pull request #100 from slashformotion/update-fr-translations

    :globe_with_meridians: updated french translations

commit f8558acb0109edca0b2e6c7f8ed61f01c3375490
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Feb 5 09:59:42 2022 +1100

    📝 Add extra clarity to upgrade docs

commit 7d2dd5b548e1075a714baa0566ef15b4b3840a74
Author: slashformotion <slashformotion@protonmail.com>
Date:   Thu Feb 3 16:55:54 2022 +0100

    :globe_with_meridians: updated french translations

commit b13dea3b68989a29e6a0483d13d0c3e47de1ff1b
Merge: 2b330b2 e24c26d
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Feb 3 16:03:38 2022 +1100

    🔖 Release v2.0.1

commit e24c26d5853e88510afbbc3dba6bf974640b458d
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Feb 3 16:03:26 2022 +1100

    🔨 Preparing release v2.0.1

commit c0f58d8a0a07177dc9e32dde473269b2665263ba
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Feb 3 15:59:40 2022 +1100

    📝 Update readme

commit 0f2ecc48ccf98883a28ddb9a64c7ea6710b8ac65
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Feb 3 15:58:21 2022 +1100

    🔧 Update package.lock

commit de73ae808746197d983a6ca5ec680e6ecdca2288
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Feb 3 15:53:07 2022 +1100

    🐛 Fix emoji strings in tables of contents

commit a1175cdcdf14be26d7894c52c20121e664556099
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Feb 3 14:53:57 2022 +1100

    🐛 Add v2 to go path

commit 2b330b2abdd97adc455584b558134355f7dff75d
Merge: d4bbc01 1bd584e
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Feb 3 11:51:31 2022 +1100

    🔖 Release v2.0.0

commit 1bd584efda0fa23250b767f792688f12862a17c1
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Feb 3 11:51:19 2022 +1100

    🔨 Preparing release v2.0.0

commit e9ce1e32147c7f890103fb9321db7bb89588cdce
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Feb 3 11:46:21 2022 +1100

    🐛 Fix JSON output duplicated items

commit 1672e2e501b8b081e79626e66bf2591166f4337b
Merge: b0ee724 54d7431
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Feb 3 11:40:03 2022 +1100

    🔀 Merge branch 'v2' into dev

commit 54d74316d3683d5f5827bda5b1ea7abf50b60a4b
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Feb 3 11:37:09 2022 +1100

    🚸 Allow `figure` to revert to default behaviour

commit 0602108f56f8dd1ce51aea37681b2ee531e83baf
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Feb 3 11:07:12 2022 +1100

    ♻️ Adopt Tailwind hover-group classes

commit a55b85f714ece89ba05fc90936bc02ca44c12b2b
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 31 09:24:03 2022 +1100

    🌐 Add i18n placeholders

commit f61412689fa5708bfd372ee28b476d172d93eddb
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 31 09:17:43 2022 +1100

    ⬆️ Upgrade to Tailwind v3.0.18

commit 053a03d42942a4c93d25ef72f49fe742e4f69549
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 31 09:14:30 2022 +1100

    💄 Add rounded border to images

commit e465eaeb335b3600cc5494d3808c69748b0ba36e
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 27 15:58:01 2022 +1100

    🩹 Update robots.txt template

commit 1de995a8e6f6cf887e8d655dc0e6fedb5b84b32c
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 27 15:44:19 2022 +1100

    ⬆️ Upgrade to Tailwind v3.0.17

commit 53eeda37700a17dacd70ace570ff849023ae8c07
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 27 15:42:05 2022 +1100

    ♻️ Change language `htmlCode` to `isoCode`

commit d86d1b82be15550544e2bd32254fc9a9ff752528
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 27 15:26:18 2022 +1100

    ♻️ Dark mode rewrite

commit 6a23863ff9b2d14c592518dcd683c02280722632
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 27 15:11:52 2022 +1100

    📝 Update docs

commit 15e67f5903d15319793d656e7327f1be6129d7cb
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 27 12:28:32 2022 +1100

    ♻️ Move home switcher JS to external file

commit cc3960cf2a29baf9e273039efe134576ef35bc77
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 27 11:39:59 2022 +1100

    ♿️ Add ARIA labels to code copy buttons

commit 734fa6e827c17aff90875f278aec168c2aa40ca8
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 27 11:39:36 2022 +1100

    🚸 Add breadcrumbs section name fallback

commit add3f764f7a98a320bd15e50b829dd2db899f6f1
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 26 10:49:30 2022 +1100

    ✨ Add code copy buttons

commit 47632533e04dacba3f659c252a34c26fdbbc1c6c
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Jan 25 13:14:01 2022 +1100

    📝 Add new content examples section to docs

commit e9eb51e86b35fbde491a80aad37e3d5f8a4aa41b
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Jan 25 13:12:14 2022 +1100

    🚸 Add archetype for external articles

commit 1d4816f90afc2871aac39c518daa3e315207117d
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 24 17:05:50 2022 +1100

    ✨ Add option to invert article pagination

commit 3703a09ce3e92e1eaba2cb0a8f429325cae30c30
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 24 16:51:28 2022 +1100

    📝 Update docs with v2 changes

commit b59137e458dfd8e6db81a32a5f948df26dafe2a5
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 24 13:58:19 2022 +1100

    🌐 Add better i18n support for article metadata

commit 61d80cf13d7748b6746ce0b4699e620e771595f2
Merge: 6bd6e21 b0ee724
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 24 12:05:43 2022 +1100

    🔀 Merge branch 'dev' into v2

commit d4bbc01d83e5841d98f91e9e6fc3cbf3d938382f
Merge: c49a1b1 b0ee724
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 24 11:53:30 2022 +1100

    🔖 Release v1.6.4

commit b0ee72456f8aab39ed9905c6735c2cb2e1abc1f0
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 24 11:53:27 2022 +1100

    🔨 Preparing release v1.6.4

commit 965ee03e7807e9abb13d7954ec9659f4223f31ac
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 24 11:11:36 2022 +1100

    ⬆️ Upgrade to Mermaid v8.13.10

commit bf4929860af3ac16892eba5bf2615c14111bbe92
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 24 11:06:57 2022 +1100

    📝 Update changelog

commit 9fc0a448d0b7bd57c801b76aacb39c94568e16d6
Merge: c5b9556 6313f69
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 24 11:00:38 2022 +1100

    🔀 Merge pull request #91 from cbelena/dev

    💄 Adjust metadata output

commit 6313f6932824d48310e0b629c585eb1475ed5615
Author: Carlos Beleña <carlos57775@gmail.com>
Date:   Mon Jan 24 00:38:55 2022 +0100

    :wrench: Revert to Date.Format instead of time.Format

commit 57c42a12c47f250f98bb5d1dc7c1451ad1feed3e
Author: Carlos Beleña <carlos57775@gmail.com>
Date:   Mon Jan 24 00:20:51 2022 +0100

    Add i18n 'Updated' string to TR

commit 8e805073d8466e79616498ba7aa092d613704bc1
Merge: c33724c c5b9556
Author: Carlos Beleña <carlos57775@gmail.com>
Date:   Mon Jan 24 00:17:32 2022 +0100

    Merge branch 'jpanther:dev' into dev

commit c5b95563b75855d08fd46fb3459ce000169f53d8
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 24 09:44:45 2022 +1100

    📝 Update changelog

commit 6b2f54bd71bc942a0e0c6c691fd554231ec13eb1
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 24 09:43:00 2022 +1100

    🔧 Remove enableEmoji as it is no longer required

commit c33724c96050b694ae7f829488e4dfe9f6b0adb6
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 24 09:14:13 2022 +1100

    💄 Fix article metadata text wrapping

commit 92543ac72914e653c2c90dfd8b1408e3a6678e18
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 24 09:11:03 2022 +1100

    📝 Add updated date on docs page for testing

commit 6bd6e2104ced2f803a9aa1c06d2a0046367df147
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 24 09:05:56 2022 +1100

    📝 Add first pass at v2 documentation

commit 432d7a00fb46b3f8eadf621366294889eb39314b
Merge: 9cb868f 631e465
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 24 08:52:02 2022 +1100

    🔀 Merge pull request #90 from ZekeriyaAY/dev

    🌐 Add TR i18n

commit 63a1f0719f8074648315db8915f5ba4132d4df2d
Author: Carlos Beleña <carlos57775@gmail.com>
Date:   Sun Jan 23 22:33:19 2022 +0100

    :bug: Fix calling date partial

commit c9bb4b0b6314d6d40a896e68ebfacff9df92c87f
Author: Carlos Beleña <carlos57775@gmail.com>
Date:   Sun Jan 23 20:28:50 2022 +0100

    :lipstick: Adjust metadata output

commit 850fc65b1b446c3186f23ea26de251e04d398c13
Author: Carlos Beleña <carlos57775@gmail.com>
Date:   Sun Jan 23 20:16:07 2022 +0100

    :globe_with_meridians: Add i18n 'Updated' strings

commit 631e465d6428d23f92326e135f878159d5d5e9e3
Author: Zekeriya AY <zekeriya@zekeriyaay.com>
Date:   Sun Jan 23 19:26:28 2022 +0300

    🌐 Add TR i18n

commit 212e92bb831e2e0a7a8eb2da6fb47deb8eae83cf
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Jan 23 09:57:03 2022 +1100

    📝 Add some taxonomy content examples

commit 1857637094bf981cab0b650477fe863ca8f8cf50
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 20 16:08:18 2022 +1100

    🚚 Move site description to languages config

commit 8319bddf04d4b1b50877c7d97db43da5c0de8c39
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 20 14:08:52 2022 +1100

    ✨ Add support for content on taxonomy pages

commit 3e2e43fc0bef17d23c8480ffb2423d3cef4100b3
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 20 14:06:28 2022 +1100

    👷 Update Lighthouse config

commit a60d255f04b9e3390073ecb568119cfcbfdd7415
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 13:56:59 2022 +1100

    💄 Fix alert Markdown styling

commit b1a418d70524afe779eeee3f1a1357fb9bcf6691
Merge: dcd5dd0 9cb868f
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 13:52:03 2022 +1100

    🔀 Merge branch 'dev' into v2

commit 9cb868fcbf7c7b87c04b3ebefd475d31d13ce94d
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 13:46:09 2022 +1100

    📝 Fix URL in changelog

commit c49a1b18d619fc0a78f1c7d5f59761128dac6a1b
Merge: 47d6183 2918d16
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 13:44:22 2022 +1100

    🔖 Release v1.6.3

commit 2918d16e36bd743a2656cd4db8b6a2400c7e9584
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 13:44:19 2022 +1100

    🔨 Preparing release v1.6.3

commit 030d008240e783e7986a1598bedc9c327c97b9cd
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 12:45:19 2022 +1100

    🙈 Clean up gitignore

commit 560a3b4984aaaeab7f2a36310a4be9e5259f3012
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 12:36:36 2022 +1100

    ⬆️ Upgrade KaTeX to v0.15.2

commit 671a755e462c4931bac546f225e494811913f5ea
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 12:32:07 2022 +1100

    ⬆️ Upgrade Mermaid to v8.13.9

commit c8bef8b27169650d8c04f50bcb2b552625d03356
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 12:22:35 2022 +1100

    📝 Update docs

commit dcd5dd0ec9cfe824be6017985c1d3b61296e9c83
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 12:13:42 2022 +1100

    ♻️ Add search to JS asset bundle

commit b458f01223b6d884b255159dfc747af51efa458f
Merge: e357330 32a0132
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 12:12:28 2022 +1100

    🔀 Merge pull request #84 from rshmhrj/emojify-titles

    Fixes #83

commit 32a01325de90675519eb4ead6e1e618bfc072b5b
Author: Rishi Maharaj <rishi.maharaj@pwc.com>
Date:   Tue Jan 18 16:58:52 2022 -0800

    🐛  fix ordering of safeHTML and emojify

commit 08427662120a073bd1a0834e64656fd25ac01d21
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 11:53:17 2022 +1100

    🔧 Add go bracket spacing to Prettier config

commit 7992ce0035a4d21ed5da875052d44e82f4df93c1
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 11:52:49 2022 +1100

    🥅 Catch when no JS required in bundle

commit e67c9d0d28f02c5f7dd23d45ff67f0b8a3b29c71
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 11:28:20 2022 +1100

    ⚡️ Bundle css and js assets using Hugo pipes

commit d61ea9f694fe2ceaf22c22e5c98c1468712d652c
Author: Rishi Maharaj <rishi.maharaj@pwc.com>
Date:   Tue Jan 18 16:24:15 2022 -0800

    :bug: add emojify on remaining .Title, .Site.Title, and metas

commit 0f34dcfa05c8cedaf770b263b6c0f710b9df9669
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 10:25:48 2022 +1100

    💄 Minor style tweaks to improve consistency

commit 80533d864110d566cb08895a6dd2940a2b4652d6
Author: Rishi Maharaj <rishi.maharaj@pwc.com>
Date:   Tue Jan 18 14:15:23 2022 -0800

    🐛  add emojify for title on list page and browser / tab title

commit ce75bc11795c4a263764698d55a9f35a40c978bc
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 19 08:34:05 2022 +1100

    💄 Add cursor to TOC header

commit b99b6a8750599c6bf885badabc2d7917f4b6efdb
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Jan 18 17:26:46 2022 +1100

    ✨ Add scroll to top link

commit acc4aee752ce9313938938a6a441e3a92c190804
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Jan 18 16:24:33 2022 +1100

    ✨ Add Tables of Contents to articles

commit ace158ed4298b8045aabd6f33eb421e086f8a2e7
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 17 15:56:08 2022 +1100

    🔍 Add more detail to JSON-LD structured data

commit ad495ca9ef711941d8dc8fa421b2fa6d26ec413f
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 17 14:14:52 2022 +1100

    ♻️ Adopt new Tailwind typography theming

commit 30fad56aed8def3ca561a33588dafd9bb938ba96
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 17 13:21:21 2022 +1100

    ♻️ Reduce repetition in main CSS

commit 8d91a79e56c49b9f70736023853deff967ce0074
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 17 10:37:51 2022 +1100

    ⬆️ Upgrade to Tailwind v3.0.15

commit 97b2de72ebc7c19a3e9c5a7dc7ef8a68680bdec8
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 17 10:16:57 2022 +1100

    ✨ Add taxonomies on article and list pages

commit e35733032ccf9dc6fb33d23539b9a15cc222bd76
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 17 09:17:54 2022 +1100

    📝 Update docs

commit 88a2b391e254ee14f95bdf2cfd406eb4af4868dc
Merge: 86ab0ae c672a6b
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Jan 17 09:13:35 2022 +1100

    🔀 Merge pull request #82 from rshmhrj/add-stackoverflow-icon

    :lipstick: add stackoverflow icon

commit c672a6b5337c9f53a557500faffdbd97d4b4c316
Author: Rishi Maharaj <rishi.maharaj@pwc.com>
Date:   Sat Jan 15 15:30:14 2022 -0800

    :lipstick: add stackoverflow icon

commit 86ab0ae31aa2718ce200bbc5b7f20ce96ccffaa5
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Jan 16 09:17:38 2022 +1100

    👷 Update Netlify build config

commit 6a9b4b4adb9281a783f939d4450d14bb43b777b3
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Jan 16 08:58:14 2022 +1100

    👷 Add drafts to GitHub Pages build

commit 68b47c8c227cc9843b8bc7cbabe2bf20bc51f613
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 13 16:59:39 2022 +1100

    🍱 Add new doggy!

commit 049edc6e40ec1ef600354fa70dadc49504a48eba
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 13 16:22:25 2022 +1100

    💄 Update Chart.js and Mermaid to use RGB css vars

commit 9cfdc65eaa2e8760cee3bf767fa99ef28be3d81e
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 13 16:17:52 2022 +1100

    ⬆️ Upgrade to Katex v0.15.2

commit 81ed75e8a285463a6d61d280f3d0cb9b074ab790
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 13 16:12:07 2022 +1100

    🩹 Fix icon alignment on example site

commit ac563d6b980734886ee98b85da6fea8cceef3ed8
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 13 16:09:21 2022 +1100

    💄 Tweak slate colour scheme

commit adaa7b757e322e5676f5932d658a2cb765d4d44a
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Jan 13 15:56:30 2022 +1100

    ✨ Add site search powered by Fuse.js

commit e9c8a4a049966fee11dfcadd909a6f3f338b6350
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 12 15:53:24 2022 +1100

    ♿️ Add "skip to main content" links

commit 1414bfc325ff49b0042a2e397296803dfd9b67ae
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 12 14:58:30 2022 +1100

    💄 Fix heading anchor style

commit a70353d5c0305c5b16016ca1c18da4c5c568f65c
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 12 14:25:25 2022 +1100

    🥅 Catch icon resource not found error

commit 3b5b93d9656d63b84c0be27445d8730b3247a127
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 12 14:21:22 2022 +1100

    ✨ Add image resizing and srcset generation

commit 9ead2c33e8e683fed1460c9309dc2e34e722ff67
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 12 12:32:29 2022 +1100

    ✨ Add `headline` parameter to author

commit ca5d0bd057c2cfcdc4c1a568efed50e8eecaead0
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 12 12:20:04 2022 +1100

    ⚡️ Improve Lighthouse scores

commit 04be1dc78e7bff5f6946dd9250b3cb7e4aaa55cf
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 12 11:23:34 2022 +1100

    ⬆️ Upgrade Tailwind to v3.0.13

commit 5a775a49bd8d816100b18722421c610613f48260
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 12 11:20:59 2022 +1100

    ♻️ Refactor vendor inline JS to bundles

commit 4754607fb558dbe2d515286b80bbf00bc581c77b
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 12 10:15:41 2022 +1100

    ♻️ Refactor dark mode inline JS to dark.js

commit 2043921232e9ce03ebd70f15d95f5a871f0d702c
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 12 00:08:38 2022 +1100

    💄 Add smooth scrolling behaviour

commit cdf56a1e11f842ffc29a0a4c4f3f82c3483da0d1
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Jan 11 16:17:49 2022 +1100

    🌐 Add RTL language support

commit 1b9b660abe8f16df9b55817b8a1eb5e9e81f20af
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Jan 11 12:29:21 2022 +1100

    🚚 Move author image to assets

commit 6eab5f95fbd99264cbe8c13abcbf57bf03ad8f5c
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Jan 11 12:13:18 2022 +1100

    🌐 Use language specific date formats

commit 9c8601102c5948906669a2ec30c1a679ed1aaffc
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Jan 11 12:00:27 2022 +1100

    🌐 Add language switcher to header

commit fe90990e10609f05bf2ed012aa6b4eb2e57b8cc7
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Jan 11 10:02:51 2022 +1100

    🌐 Restructure config for multilingual support

commit e67b9774d68ae7fc3c40506de786879f0a065a3d
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Jan 11 09:25:33 2022 +1100

    📝 Update changelog

commit 19359e306cb728114d0060fdd3363e9dac7e2982
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Jan 11 09:25:24 2022 +1100

    📌 Update package list

commit ac77abe91fecc9882b34494389a44bc82db790af
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Jan 9 10:42:08 2022 +1100

    💄 Workaround @tailwindcss/typography hover issue

    Ref: https://github.com/tailwindlabs/tailwindcss-typography/issues/231

commit e8b3102eaace34bfd2bffc8d6a546178180b3058
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Jan 9 10:39:02 2022 +1100

    📦 Update packages

commit 3997ee3a207690c2fa147df82a64419f1df1e015
Merge: a1006c4 0fadc45
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Jan 9 10:23:09 2022 +1100

    🔀 Merge branch 'dev' into v2

commit 47d618339674987ac307f78032417cfd73c77c21
Merge: 72b4917 0fadc45
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Jan 7 14:53:14 2022 +1100

    🔖 Release v1.6.2

commit 0fadc453ab961159f19a30f171b0629d46f809e5
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Jan 7 14:53:10 2022 +1100

    🔨 Preparing release v1.6.2

commit 55677da695b3daf7f434c03bc9bcc3fe6d34ee5b
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Jan 7 14:50:15 2022 +1100

    🐛 Fix JSON-LD keywords delimiter

    Fixes #74

commit 7606c925aeaa27f9e889571b7bf5be3c7f052f99
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Jan 7 14:31:07 2022 +1100

    ⬆️ Upgrade Mermaid and Chart.js to latest

    Addresses vulnerability in Mermaid CVE-2021-43861 - https://github.com/advisories/GHSA-p3rp-vmj9-gv6v

commit 4ca9f334cbb86fe7fec9dcbade2d0bdcebc5540a
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 5 10:13:23 2022 +1100

    🐛 Fix lead shortcode not rendering Markdown

    Fixes #73

commit ecf207273c1fcad8c34924c06cdd2bf5ac5c43d5
Merge: e65645c 8babaca
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Jan 5 09:36:14 2022 +1100

    🔀 Merge pull request #75 from OCram85/OCram85-patch-1

    📝 Add OCram85 blog to users

commit 8babaca718654fc9169feacf839644804a7da6b1
Author: Marco Blessing <marco.blessing@googlemail.com>
Date:   Tue Jan 4 14:15:48 2022 +0100

    📝 Add OCram85 blog to users

commit 72b49172f5aef265e44cfe8e4c4262ed2afb46f7
Merge: 13aad07 e65645c
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Dec 31 09:09:48 2021 +1100

    🔖 Release v1.6.1

commit e65645caf8543a85ad0effa9bb7fdb8f02c50b4e
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Dec 31 09:09:46 2021 +1100

    🔨 Preparing release v1.6.1

commit b9e09d409ea48b718b0ff900039c6f7e9a4d5279
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Dec 31 09:05:48 2021 +1100

    📝 Add Blogger icon to docs

commit 61cb1d4a76d5b48ec384587a7757b3f86d3f899f
Merge: 90ab6b2 64f36ba
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Dec 31 08:59:02 2021 +1100

    🔀 Merge pull request #71 from rshmhrj/add-blogger-icon

    :lipstick: add blogger icon

commit 64f36ba19b3aee84e35aa3c8fa303249152534cc
Author: Rishi Maharaj <rishi.maharaj@pwc.com>
Date:   Wed Dec 29 22:33:38 2021 -0800

    :lipstick: add blogger icon
    - includes blogger svg icon from font awesome
    - includes placeholder in config.toml > author.links

commit 90ab6b2431f1e1969b5fb09737ce22cfde5eb6e2
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Dec 29 18:09:57 2021 +1100

    📝 Update changelog

commit 514f02782a63dae02b84b173a1fc810870f86222
Merge: 7f9b2cb 5c9438e
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Dec 29 18:05:37 2021 +1100

    🔀 Merge pull request #66 from AntoineSoetewey/patch-1

    Add parentheses in date.html

commit 5c9438e952e8004336b761f572da2a1814dc2141
Author: Antoine Soetewey <ant.soetewey@gmail.com>
Date:   Mon Dec 27 12:06:09 2021 +0100

    Update date.html

    When following this [workflow](https://bookdown.org/yihui/blogdown/workflow.html), there is an error when serving the site :

    ```
    Launching the server via the command:
      /Users/antoinesoetewey/Library/Application Support/Hugo/0.82.0/hugo server --bind 127.0.0.1 -p 4321 --themesDir themes -t congo -D -F --navigateToChanged
    Error: Error building site: failed to render pages: render of "page" failed: execute of template failed: template: _default/single.html:11:11: executing "main" at <partial "article-meta.html" (dict "context" . "scope" "single")>: error calling partial: execute of template failed: template: partials/article-meta.html:16:36: executing "partials/article-meta.html" at <partial "meta/date.html" .>: error calling partial: "/Users/antoinesoetewey/Documents/GitHub/elsaetantoine/themes/congo/layouts/partials/meta/date.html:2:24": execute of template failed: template: partials/meta/date.html:2:24: executing "partials/meta/date.html" at <.Site.Params.article.dateFormat>: invalid value; expected string
    ```

    By adding these parentheses, the site is served without any error.

    Regards,
    Antoine

commit 7f9b2cbc61ff8b4f0044c8a7f5a9259fc04497ed
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Dec 27 08:49:34 2021 +1100

    📝 Update changelog

commit fea41ec41c40e84c25d92ed877e468a876722ec4
Merge: c0d96a2 00bf515
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Dec 27 08:42:30 2021 +1100

    🔀 Merge pull request #65 from darkrain-nl/dev

    Fix error unclosed action in footer.html

commit 00bf51517ea4cd9fd7f3a6a1bbad9bc56d9cfbb4
Author: darkrain-nl <jan@darkrain.nl>
Date:   Sat Dec 25 10:28:11 2021 +0100

    🐛 Fix error unclosed action in footer.html

commit c0d96a22c7fabbd5b44916b41506a0c615014d65
Merge: e7a8bae a60428e
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Dec 25 10:56:43 2021 +1100

    🔀 Merge pull request #61 from dr460nf1r3/dev

    Add dr460nf1r3.org to users

commit a60428ec8401de5a3e2483834d1903959e947654
Author: dr460nf1r3 <njcrypted@protonmail.com>
Date:   Fri Dec 24 15:24:06 2021 +0100

    📝 Add dr460nf1r3.org to users

commit a1006c4f7b32351de08f1d3deb062a49a7e3aaea
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Dec 25 10:53:46 2021 +1100

    💄 Adopt new Tailwind v3 classes and colour names

commit 5662a11f2d620d283b8baf0a62f69e3b265090fd
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Dec 25 10:52:47 2021 +1100

    ⚰️ Remove redundant Tailwind v2 config

commit 86fc39f66718ce726b2e83d3828a20fe401bd6e2
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Dec 25 10:51:48 2021 +1100

    ⬆️ Upgrade to Tailwind v3

commit 13aad07d91ed0f7c79eaacc8c9ad603968f499fe
Merge: 3b20754 e7a8bae
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Dec 21 13:27:13 2021 +1100

    🔖 Release v1.6.0

commit e7a8baee3a8f261af0279a44f4846f495fbad39c
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Dec 21 13:27:10 2021 +1100

    🔨 Preparing release v1.6.0

commit 90f36f8221f404745de574a054abdb0b665680fd
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Dec 21 13:22:45 2021 +1100

    ♿️ Improve contrast and other accessibility issues

commit ccfd369c67a1e8e1eca823e1db222b61dde2aa76
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Dec 21 12:11:06 2021 +1100

    👷 Add Lighthouse CI configuration

commit 4832b0900a64544286ffc2747f5e40eb18751eb8
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Dec 21 11:24:15 2021 +1100

    👷 Update Netfliy to Hugo v0.91.0

commit 9647282dc12842e912288c30e63c4dbc13c02861
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Dec 21 09:44:42 2021 +1100

    📝 Add note about Hugo project structure

commit 101c01b54205bfc42b8ecf7b3f39419b4acf7bc8
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Dec 21 09:11:00 2021 +1100

    📝 Add icons reference to docs

commit 6066f871229947c878d23108365a9239df011dc0
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Dec 21 08:46:11 2021 +1100

    🍱 Add icons for 10 additional services

commit 5ce23f53b8aeef5e0bb677706e9cd7c2f92267f1
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Dec 18 10:20:13 2021 +1100

    📝 Add font size customisation docs
    (Ref: #43)

commit bf9d11d23afcd3028a87b9d7f42a2435eed970c2
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Dec 18 10:07:38 2021 +1100

    ✨ Add article last updated date support
    (Ref: #43)

commit c7eb77e4ba9409eb567e1d3ad3a6b052de35027f
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Dec 18 09:16:04 2021 +1100

    ⬆️ Upgrade Mermaid and Chart.js to latest

commit 8671712a8c6ab306316aa87da2374b73be017f05
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Dec 18 09:06:59 2021 +1100

    📝 Update changelog and docs

commit 260030d98f75b77bd37a140addfd88d60661222f
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Dec 18 09:06:29 2021 +1100

    🔧 Set showWordCount default to false

commit 27ccae6f7d02e7992754d49c2eeda72eaefc0c7f
Merge: 24ce98d e197434
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Dec 18 08:58:48 2021 +1100

    🔀 Merge pull request #57 from wizardbyron/dev

    Add word count to page meta

commit e1974344bedfa6fc9d4209d0cb584cd807d2f13c
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Dec 18 08:55:53 2021 +1100

    🌐 Add placeholder i18n strings

commit b4cbe9122b8d1ae34b239a52416f271abb411032
Author: wizardbyron <1400427+wizardbyron@users.noreply.github.com>
Date:   Fri Dec 17 09:20:47 2021 +0800

    🌐 Pass .WordCount to i18n function

commit 65a7228bfc87815c5c49082e21101c68a42a593e
Author: wizardbyron <1400427+wizardbyron@users.noreply.github.com>
Date:   Thu Dec 16 17:37:46 2021 +0800

    ✨ Add word count to page meta

commit 24ce98d1f220e2f2275fb884d6550c072131a97c
Merge: 6c3dcc8 86c4a0a
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Dec 9 09:29:28 2021 +1100

    🔀 Merge pull request #45 from leifg/patch-1

    Add leif.io to user sites

commit 86c4a0ac031d6a48fe3b0a2df4aea8fd6b83057c
Author: Leif Gensert <leif@leif.io>
Date:   Mon Dec 6 18:57:34 2021 -0800

    📝 Add leif.io to user sites

commit 6c3dcc8290addbda5e4312cd4c179e54c482068c
Merge: 38e30f3 9e0d89b
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Nov 23 10:19:32 2021 +1100

    🔀 Merge pull request #37 from AntoineSoetewey/patch-1

    :memo: Add new user

commit 9e0d89b6e87f16bd617c0c6c7b9cb1a3531f65db
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Nov 23 09:54:05 2021 +1100

    🎨 Reformat document

commit 1c91b342fa301afee27dcf47c68cbcef1a5c7566
Author: Antoine Soetewey <ant.soetewey@gmail.com>
Date:   Mon Nov 22 23:30:41 2021 +0100

    📝 Add new user

commit 3b2075419c640fdfcc15e663a978bfd81771b839
Merge: bd24897 38e30f3
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 18 09:49:18 2021 +1100

    🔖 Release v1.5.3

commit 38e30f3aed87958904b134e39be66f9ac0d92c40
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 18 09:49:16 2021 +1100

    🔨 Preparing release v1.5.3

commit 9c591c2d405b1041ea9e5594c19f5160512cb41e
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 18 09:46:27 2021 +1100

    💚 Update Netlify to latest Hugo release

commit 43324e0ad76efc6a798e4dc09f55f877613ec9f7
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Nov 16 17:46:40 2021 +1100

    📝 Update changelog

commit b62816ee438a87358887b010712c53cd4ba9ae31
Merge: 82740f8 d70c63d
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Nov 16 17:41:49 2021 +1100

    🔀 Merge pull request #32 from canstand/dev

    Fix pagination uses the date of current article; update zh i18n

commit d70c63d800b2b5ca6e0fab92985116ee0672e425
Author: canstand <canstand@outlook.com>
Date:   Tue Nov 16 14:08:22 2021 +0800

    :bug: Fix incorrect pagination dates

commit 92f4a8d41d2cd897bd073a776e922b63d8fc119f
Author: canstand <canstand@outlook.com>
Date:   Tue Nov 16 14:05:38 2021 +0800

    :globe_with_meridians: Update zh i18n

commit bd24897a018d65b4e547cc365fe3b049597e72a2
Merge: 4f38df9 82740f8
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Nov 10 12:56:42 2021 +1100

    🔖 Release v1.5.2

commit 82740f8beabc54824057ceb85c4b11b30c479083
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Nov 10 12:56:39 2021 +1100

    🔨 Preparing release v1.5.2

commit 51d94b9afad487f15eda6bffa5c30b3bb4290dbf
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Nov 10 12:44:38 2021 +1100

    📝 Update changelog

commit 9380b7d87200575125572f05af882dda657ae3b1
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Nov 10 12:35:22 2021 +1100

    👷 Delete commit message check

commit 898609ff8e50c45e5b5aa63cb451d18fa39fe42c
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Nov 10 11:22:48 2021 +1100

    👷 Update GitHub workflow names

commit 1a234390ee82e6a91901b9d369607aade88440db
Merge: 8d89100 a4e2008
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Nov 10 12:36:38 2021 +1100

    🔀 Merge pull request #30 from iyanmv/i18n-es

    🌐 Add es i18n

commit 8d89100427f3f37ed55941c249e204fd7b24db8f
Merge: b3386a0 18ba7d8
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Nov 10 12:29:29 2021 +1100

    🔀 Merge pull request #28 from ComicShrimp/dev

    🌐 Add pt-BR translation

commit a4e2008b177929fe5be4645900f94af09c0ea9a1
Author: Iyán Méndez Veiga <iyan.mendezveiga@hslu.ch>
Date:   Wed Nov 10 02:21:14 2021 +0100

    🌐 Add es i18n

commit 18ba7d88eb6be80e98194584183caf830240c526
Author: Mário Victor Ribeiro Silva <mariovictorrs@gmail.com>
Date:   Tue Nov 9 10:43:45 2021 -0300

    🌐 Add pt-BR translation

commit b3386a065adeeca2bc3f597ffce7fd336723ffed
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Nov 9 11:00:15 2021 +1100

    🔧 Add pull request template

commit f0aae643922ba57a18cc10166f2aa695363a33fb
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Nov 8 10:34:36 2021 +1100

    📝 Update changelog

commit 3e7a5724a38203933c377dbf2d86f031f71e34c5
Merge: cd96807 28d9c34
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Nov 8 10:31:47 2021 +1100

    🔀 Merge pull request #27 from max-alletsee/dev

    Add German translation

commit cd968074c94747014af6f0b0cf721e2b49c2f906
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Nov 8 10:26:12 2021 +1100

    👷 Add commit message checker

commit dae564acca688b55bb2ec60c2974cbc4b64557f4
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Nov 8 08:49:54 2021 +1100

    👷 Stop GitHub test builds on PRs

commit 28d9c34d114541c0244f81a9209793930b5d2694
Author: Max Alletsee <max.alletsee@gmail.com>
Date:   Sat Nov 6 13:09:17 2021 +0100

    de.yaml: small tweaks

commit a89f5c57e0c182d250603c0f760c9c0457a51c12
Author: Max Alletsee <max.alletsee@gmail.com>
Date:   Sat Nov 6 12:19:14 2021 +0100

    Added de i18n

    German localization

commit 690b40fe53a3acca5fedc2173f12e7eaedfa07dd
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Nov 6 14:49:55 2021 +1100

    📝 Update changelog

commit 5de5c0a56e64b7daeafb046f605c4304e373aa1d
Merge: 32640ca ca3581f
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Nov 6 14:40:45 2021 +1100

    🔀 Merge pull request #26 from Benjamin-Lee/patch-1

    Fix article pagination spacing

commit ca3581fca7e44e22962711bc5ffd82722a664da2
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Nov 6 14:38:33 2021 +1100

    💄 Adjust leading on article pagination headings

commit 32640cac928c48b8ed86a27865db4c9b8273db3d
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sat Nov 6 13:05:29 2021 +1100

    💄 Only output icon styles if there is an icon

commit a7c1f25c9c91d10402c64f03296f0b0028bdfc67
Author: Benjamin Lee <benjamindlee@me.com>
Date:   Thu Nov 4 19:53:06 2021 -0400

    Fix spacing for pagination dates

commit 4f38df9c23c91dca1542b03cac071e0d940f710f
Merge: 42d42c7 968251b
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 14:22:24 2021 +1100

    🔖 Release v1.5.1

commit 968251bfca4831fceed33ad490bcdc93503ed139
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 14:22:21 2021 +1100

    🔨 Preparing release v1.5.1

commit dfd189ee0585a81eb27867fc747de02d81b947c8
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 14:19:02 2021 +1100

    🚑 Rename vendor directory to lib

commit 648fd4779825704bf5b2c6672baf4c7306ce644e
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 13:25:13 2021 +1100

    💚 Update Netlify to latest Hugo version

commit 4c81fd4023227be503068ec88200abe8d0793ecb
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 12:35:44 2021 +1100

    ✏️ Fix minor typos

commit 42d42c7831def1a1a4124555a4e7e3af8976d349
Merge: 8267f8a 116ae4c
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 11:06:30 2021 +1100

    🔖 Release v1.5.0

commit 116ae4cca57dfe6b2a09296a873131fa84ed4bf6
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 11:06:28 2021 +1100

    🔨 Preparing release v1.5.0

commit 1af5b956a92567eaff1a93ea33d968b503b48b3b
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 11:02:36 2021 +1100

    ⬆️ Upgrade to Tailwind v2.2.19

commit 697adc48678670c53d47fdc8203daf7f97ff4008
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 10:58:26 2021 +1100

    📝 Update readme

commit 4fa7aa4c77f74504e8aa00a5d4abf039f5b4b0cb
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 10:54:47 2021 +1100

    ✨ Add author bio to article footer

commit 3a2ce6a9e0839f1cbdd5b286bffe08b3d3aaa370
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 10:17:27 2021 +1100

    📝 Add more tags to exampleSite

commit 1b37d75aa4d6beddfe50608d6272e3d9c1178add
Merge: 47d49fc 67aa482
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 10:11:48 2021 +1100

    ✨ Add KaTeX and katex shortcode

commit 67aa482ff6b2ebb0626a3710458fa774e61926bc
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 10:08:59 2021 +1100

    📝 Add mathematical notation docs

commit 554ae35e6fc49714de8a6960276b76810db6ce78
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 10:06:52 2021 +1100

    ✨ Add katex shortcode

commit 40899da9a810a2b0f31c24ff5d43b12486034ae7
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 09:56:30 2021 +1100

    🐛 Fix code block style within links

commit 44bc4fbeb8daa8138077fc384c566b4b627ac0cf
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Nov 4 08:54:34 2021 +1100

    🍱 Add KaTeX fonts

commit 355667eec3a83b321e1feadf679db9437aaf46c8
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Nov 3 17:06:57 2021 +1100

    ➕ Add katex

commit 47d49fcaf0209232560d85b271066b15da34d0f5
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Nov 3 16:52:40 2021 +1100

    🚚 Move vendor includes to new partial

commit d476b9cf64dddf6de8795488bff6eb5702a8348b
Merge: 7c5eaed 3c12286
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Nov 3 16:35:56 2021 +1100

    ✨ Add Chart.js and chart shortcode

commit 7c5eaed76138e7fb78e99d40339d3db64d383c8c
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Nov 3 16:23:52 2021 +1100

    📝 Update 'Rich Content' example page

commit d69584ae2e9c0dd09e3284869c16a0abcd0b18d2
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Nov 3 16:22:44 2021 +1100

    🩹 Update twitter_simple to use 2 params

commit ebe8b9a43006e652da5701be27404ef3892abff5
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Nov 3 16:19:12 2021 +1100

    🙈 Add .hugo_build.lock to gitignore

    Hugo 0.89.0 creates a new `.hugo_build.lock` lock file
    when building the site.
    Ref: https://github.com/gohugoio/hugo/releases/tag/v0.89.0

commit 3c122867ee9252f2d68a0a186483f0b89e27f7ad
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Oct 29 17:04:57 2021 +1100

    📝 Add chart samples page

commit 32522c639938c541fe5be0b1cc58e1ae36644ad9
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Oct 29 17:04:31 2021 +1100

    💄 Add more styles to charts

commit 52fd737c58268c7dc10c53a874e772eaee3bb244
Merge: 68c05b9 d156d83
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Oct 29 16:27:55 2021 +1100

    🔀 Merge branch 'dev' into chart

commit d156d83a7c554e6ade2d5dd898ee4b36a21d238e
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Oct 29 16:22:29 2021 +1100

    🚸 Remove slug and taxonomy from default archetype

commit 3db55c1f265454f3749c41080df9ddf2c905c18f
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Oct 29 16:09:30 2021 +1100

    📝 Update content samples

commit 8949c62df2df9b2a973a74b89400687f04018ffb
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Oct 29 14:54:46 2021 +1100

    🐛 Fix article summary style in dark mode

commit bda38cb8f936957f2ad785b97fd623d8c452ee81
Merge: 1232b32 210175b
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Oct 29 14:51:49 2021 +1100

    ✨ Add dark mode toggle

commit 210175ba44ddf0e8f3a4c0a348d7171cd271d78f
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Oct 29 12:30:42 2021 +1100

    🌐 Add i18n strings for appearance toggle

commit 6f2200f274a5185304c1adaecdb7e1a2efe24944
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Oct 29 12:10:38 2021 +1100

    📝 Update readme

commit 81824a1a00d014654fce44b1ffdc854c8307caab
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Oct 29 12:07:21 2021 +1100

    🚧 Add config parameters for dark appearance

commit 9d42b7be2b2b42416a231e918dffd2bb9a8906ca
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Oct 29 11:15:00 2021 +1100

    🚧 Add dark mode toggle button

commit 1232b3285fc033c109bfa9c59cb0f33d899b759b
Merge: 35a35f5 d1d697a
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Oct 29 09:23:22 2021 +1100

    🔀 Merge pull request #24 from slashformotion/dev

    :pencil: Added a new site in users.md

commit d1d697abbc379c0190385412de321944b4276c37
Author: slashformotion <slashformotion@protonmail.com>
Date:   Thu Oct 28 09:55:51 2021 +0200

    :pencil: Added a new site in users.md

commit 35a35f5e3223d16db87ef278b55f5b3b5d244bdd
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Oct 28 17:19:53 2021 +1100

    🐛 Fix site logo image dimensions unconstrained
    Closes #19

commit 68c05b97b26ef4966da58933f59834e6bb640059
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Oct 28 15:32:27 2021 +1100

    ✨ Add chart shortcode

commit 04b5cb0f92f0ddcd25ca77116bfb36b1e32e8e41
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Oct 28 15:31:34 2021 +1100

    ➕ Add Chart.js dependency

commit 6d1c51c037acb4e9194ca10175955007a3f2621a
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Oct 28 15:01:19 2021 +1100

    💄 Add Mermaid theming to match colour scheme

commit acbcfacd6f591611fb4680c9827a0c7f6e2e3c41
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Oct 28 12:39:34 2021 +1100

    ➕ Add Mermaid as bundled dependency

commit 14a6aba0b556d278f09a8271202ee3d2c5d8c791
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Oct 27 10:48:29 2021 +1100

    🚸 Add groupByYear to front matter

commit 4c13c4d7769309b900c02dcf91869a9e07f8e747
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Oct 27 10:34:50 2021 +1100

    💄 Add Markdown and Emoji support to parameters

commit b1ae418cc34ad776ac8e417170aa0bc62b96e24b
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Oct 27 09:52:45 2021 +1100

    📝 Update changelog

commit 279577d117e4d05a1c5d24a912ee1f67ede91ff5
Merge: 7d5fcfd 2232277
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Oct 27 09:40:53 2021 +1100

    🔀 Merge pull request #18 from slashformotion/dev

    :globe_with_meridians: Added fr i18n

commit 7d5fcfd7db69900cc5ba5d03a3264cef2e3f914c
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Oct 27 09:27:57 2021 +1100

    👷 Fix labeller config

commit 2232277727720140fb720c1df06885ca1512a3c2
Author: slashformotion <slashformotion@protonmail.com>
Date:   Tue Oct 26 17:39:31 2021 +0200

    :globe_with_meridians: Added fr i18n

commit b54745b7bcd97e541fe813f496a920137bbae8ee
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Fri Oct 22 11:34:53 2021 +1100

    🍻 Add GitHub sponsor

commit 7222bd19710915322038682152a2e83a73321d7f
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Oct 21 14:16:44 2021 +1100

    📝 Add hosting and deployment docs

commit c53cd627e653b79d55cc675bb3be99a895dd308a
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Oct 21 11:15:55 2021 +1100

    📝 Fix typo

commit 9265fed50bb21ee9527ef36c65a72a030b2ba6a8
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Oct 21 11:13:11 2021 +1100

    📝 Clean up readme and installation instructions

commit e75f375558abdc734e01ac901198c1c882af6b01
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Oct 21 09:28:56 2021 +1100

    👷 Add root .md files to labeller

commit 8267f8aec67798d530f61913dbac08d04a44ed6c
Merge: 34d10e0 203ed89
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Oct 20 14:56:49 2021 +1100

    🔖 Release v1.4.0

commit 203ed892b6124dcedbfc3dd4b6d23b77a2546b2d
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Oct 20 14:56:47 2021 +1100

    🔨 Preparing release v1.4.0

commit 03e447cb3442b53e221d5665e0b98df920351a97
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Oct 20 14:56:25 2021 +1100

    📝 Fix changelog dates

commit aee8e4912915b99e29516dcbbcbe8c694aac6c56
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Oct 20 14:47:40 2021 +1100

    ⬆️ Upgrade to Tailwind v2.2.17

commit 723481a7a3cbd355296519b7fe75f1207175a6cc
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Oct 20 11:07:55 2021 +1100

    ✨ Add Pinterest sharing links

commit db134785e4d2086a03cc24670ffb23167dfc0b41
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Oct 20 10:44:57 2021 +1100

    🚸 Add sharing links to front matter

commit 527d3d101ed4183b485eacba9a4f1fbe0ef28342
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Oct 20 10:21:44 2021 +1100

    ⬆️ Upgrade to Mermaid v8.13.3

commit 0f15206e780a38f4ebc6d41f581e508387d5c64f
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Oct 20 09:31:28 2021 +1100

    🌐 Add extra variables to footer for better i18n

commit f9263f5235b9a341b0ba8d1df48017b13b7d23c1
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Oct 19 17:59:13 2021 +1100

    👷 Fix git version tags not being prefixed

commit bf81a7a27d50fe77f4f9e9e4819c24cab675cdc8
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Oct 19 17:33:18 2021 +1100

    🐛 Fix logo not linked to home page
    Closes #13

commit 0a59984b4438f5d7bcb46ab7f1aa21dc701fd33b
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Oct 19 17:04:42 2021 +1100

    ✨ Add support for article summaries

commit 1901917d7c5be8ea1c26be2a6214e070e673d1ac
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Oct 19 15:45:11 2021 +1100

    ✨ Add footer menu

commit 07562ee7d4870f64df744c651e44cc8e68c8a222
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Tue Oct 19 15:44:23 2021 +1100

    🚸 Make main menu optional

commit 586224fc7a7eeb8217c9105d7fb95a67fad8a37c
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Oct 18 14:36:36 2021 +1100

    📝 Add colour scheme docs with preview swatches

commit 96bc578153c9ae5b9c235257badfe38f3a64c8df
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Oct 18 13:08:36 2021 +1100

    📝 Update changelog

commit bafa78536974139212454d2d732331acccea800b
Merge: 41751de 3bc61c4
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Oct 18 12:59:54 2021 +1100

    🔀 Merge pull request #9 from srisco/dev

    ✨ Add icons, slate colour scheme and new user

commit 3bc61c48eeb90785023bdcf11d7cab7870e3c3e3
Merge: 12cb25c 41751de
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Oct 18 12:55:59 2021 +1100

    🔀 Merge branch 'dev' into pr/srisco/9

commit 12cb25c0e3bb831ce20fb83504349b9f16d47628
Author: Sebas Risco <sebas.risco@gmail.com>
Date:   Sun Oct 17 18:33:49 2021 +0200

    ✨ Add "slate" theme

commit 41751dec85097c8c075f64ccdd9e6d1f35424de9
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Sun Oct 17 10:23:42 2021 +1100

    📝 Documentation updates

commit 9f13b440d2116fee4ed0e8b73ffe920c88f5e800
Author: Sebas Risco <sebas.risco@gmail.com>
Date:   Thu Oct 14 18:00:56 2021 +0200

    💄 Update Cool Gray scheme (it was Blue Gray)

commit aec564a4c4657a578eed2445e98a652a60af7903
Author: Sebas Risco <sebas.risco@gmail.com>
Date:   Wed Oct 13 18:04:18 2021 +0200

    📝 Add new user

commit 83a18dfd7c67a156927a0dbaf06e162e4a4824ad
Author: Sebas Risco <sebas.risco@gmail.com>
Date:   Wed Oct 13 18:01:43 2021 +0200

    💄 Add full cool-gray color scheme

commit 82b3ffe013f45abd855d927cd5254f8222a959b6
Author: Sebas Risco <sebas.risco@gmail.com>
Date:   Wed Oct 13 17:59:51 2021 +0200

    🍱 Add orcid and researchgate icons

commit 34d10e04a5647a9a9fa8b34046a9b3084d672f7c
Merge: 9087f7d 0682727
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Sep 29 10:56:25 2021 +1000

    🔖 Release v1.3.0

commit 0682727e1cd40f71bee1303844dfb8ec41cffc8a
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Sep 29 10:56:22 2021 +1000

    🔨 Preparing release v1.3.0

commit 706bb547088052062539b70adb0b385d032059d8
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Sep 29 10:55:03 2021 +1000

    ⬆️ Upgrade to Tailwind v2.2.16

commit 91d2597bdf1a04a7dc9600c67f67ca0c1f70b317
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Sep 29 10:39:29 2021 +1000

    📝 Fix documentation typos

commit 0e2db87b2340ae577ad6635c256981eae3b35df9
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Sep 22 12:34:34 2021 +1000

    🔀 Merge branch 'dev' into dev

commit 4528e36a821413703f10e8498552f47c00767de7
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Sep 22 12:24:46 2021 +1000

    ✨ Add option to add a site logo

commit ef05cd07cc1342d86ea413c02bfc25971a265ee7
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Sep 22 09:14:33 2021 +1000

    ⬆️ Bump labeler version

commit 94b690258af352efbeaadbf870ba959b43738e37
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Sep 22 09:10:22 2021 +1000

    👷 Fix labeller secrets issue

commit 3cd30d9a80d15afa2159b4055adb70bdc7ab11bd
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Sep 20 15:17:43 2021 +1000

    📝 Update changelog

commit 728ad462ad03171f6991833aec93c04cc8e69c9c
Merge: 9c5e624 962a487
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Sep 20 15:04:06 2021 +1000

    🔀 Merge pull request #2 from canstand/dev

    ✨ Add i18n Chinese translation

commit 9c5e624bb61ff186e3554991e53d7506f9ac3c7f
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Sep 20 15:02:10 2021 +1000

    👷 Add pull request labelling workflow

commit 661016d3beef68fa0df8ca9bfe012d685ed34361
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Mon Sep 20 15:01:41 2021 +1000

    📝 Fix minor typos

commit 962a4875ee5b888e1352975c3c1ee5bfe712fe91
Author: canstand <canstand@outlook.com>
Date:   Mon Sep 20 11:24:28 2021 +0800

    ✨Add i18n chinese translation

commit 9087f7d9eb5ffb37e7a99fb685bef6a79f64efe2
Merge: 095459f 4eb4ae4
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Aug 26 10:18:40 2021 +1000

    🔖 Release v1.2.1

commit 4eb4ae4493089884ced8a37f92ea0c14d3c6fbbe
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Aug 26 10:18:35 2021 +1000

    🔨 Preparing release v1.2.1

commit 37e8a8bc91163cf691f708eb9594a5d24e75a815
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Aug 26 10:07:37 2021 +1000

    ✨ Add `robots` parameters

commit efc317e61203250cd0ee8359d039b4693cc8f6d2
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Aug 26 09:48:08 2021 +1000

    💚 Fix Hugo version string in Netlify config

commit f6dceb62333890152610997ce8aa5008073553c5
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Aug 26 09:44:41 2021 +1000

    🏗️ Change URLs to be relative instead of absolute

commit 1a69b5fd39990aa1117b91e666bd63d218ea0d64
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Aug 26 08:57:05 2021 +1000

    👷 Update to Hugo 0.87

commit f59b50a01bf1fddc0c208fd3c1cc08f6d03ffdcd
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Thu Aug 26 08:56:50 2021 +1000

    🔧 Update npm example script to specify port 8008

commit 277fb90325461bb2959c839d87bcab79e147a209
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Aug 25 17:07:31 2021 +1000

    👷 Add baseURL back into Netlify build command

commit da03bddb627e58e56fa5ff95f3f427ef378cfc17
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Aug 25 16:25:45 2021 +1000

    💄 Fix recent header alignment on profile layout

commit 589d3fb8a2d56ed7b9e67046e985ece8795d6a4d
Author: James Panther <4462786+jpanther@users.noreply.github.com>
Date:   Wed Aug 25 16:09:3…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

8 participants