inSileco / inSileco.github.io

:globe_with_meridians: Our blog powered by blogdown
https://blog.insileco.io/
GNU General Public License v3.0
8 stars 1 forks source link

Tag blog posts #3

Closed KevCaz closed 6 years ago

KevCaz commented 7 years ago

We should tag our blog posts with key words, this could/should be done by inserting something like:

keywords:
    -  key1
    -  key2 

in the YAML hearder of each blog post and then a short JS script should associate blog posts with keywords. Such feature would be extremelly useful!

KevCaz commented 7 years ago

I have added a simple feature to add keywords to a blog post => see addStatus.R in the Rscripts folder. To add keyword, simply use the keywords: field in the yaml-header. These keywords could be used as tags to index blog posts (this remains to be implemented).

KevCaz commented 6 years ago

With the new Hugo integration, this is automatically handled by Hugo. Let's say you want to add 2 tags to your post:

  1. plot
  2. R

Add :

tags: [plot,R]

in the YAML header of your post. That being said, I am closing this issue.