First section

Variables for the settings: https://adityatelange.github.io/hugo-PaperMod/posts/papermod/papermod-variables/

Subsection 1

This is subsection 1

Subsubsection

This is sub-subsection

How to insert code

Example: https://github.com/adityatelange/hugo-PaperMod/blob/exampleSite/content/posts/code_syntax.md

Basically you, just need this on the top of the block: ```vue {linenos=true}

1
2
3
4
5
6
7
8
<template>
  <v-chip size="x-small" :color="props.color" style="margin-right: 3px; margin-bottom: 2px">
    <div style="font-weight: bold">{{ props.text }}</div>
  </v-chip>
</template>
<script setup>
const props = defineProps({ text: { type: String }, color: { type: String } });
</script>