diff options
| author | Nantha Sorubakanthan <nantha@mielota.com> | 2025-10-28 10:45:34 +0100 |
|---|---|---|
| committer | Nantha Sorubakanthan <nantha@mielota.com> | 2025-10-28 10:45:34 +0100 |
| commit | 0d747afe10bd5b5731e203610119d48afe57385f (patch) | |
| tree | ad063de7a08bacceee35a6d70ebd765db5dd6763 | |
| parent | f5898d932f812410ff08b974ccdb72a81dc624b3 (diff) | |
change toml to yaml
| -rw-r--r-- | .editorconfig | 4 | ||||
| -rw-r--r-- | hugo.toml | 9 | ||||
| -rw-r--r-- | hugo.yaml | 10 |
3 files changed, 14 insertions, 9 deletions
diff --git a/.editorconfig b/.editorconfig index 3a63703..e1c3e6c 100644 --- a/.editorconfig +++ b/.editorconfig @@ -9,3 +9,7 @@ insert_final_newline = true [*.md] trim_trailing_whitespace = false + +[*.yaml] +indent_size = 2 +indent_style = space diff --git a/hugo.toml b/hugo.toml deleted file mode 100644 index 272eaaa..0000000 --- a/hugo.toml +++ /dev/null @@ -1,9 +0,0 @@ -baseURL = 'https://mielota.com' -languageCode = 'en-us' -title = 'Mielota' - -[params] - Email = 'mailto:nantha@mielota.com' - -[markup.highlight] - style = "dracula" diff --git a/hugo.yaml b/hugo.yaml new file mode 100644 index 0000000..b85b8de --- /dev/null +++ b/hugo.yaml @@ -0,0 +1,10 @@ +baseURL: https://mielota.com/ +languageCode: en +title: Mielota + +markup: + highlight: + style: dracula + +params: + email: mailto:nantha@mielota.com |
