« get me outta code hell

content: transformContent: style cleanup - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/content/dependencies/transformContent.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-12-08 22:50:58 -0400
committer(quasar) nebula <qznebula@protonmail.com>2023-12-28 17:14:15 -0400
commit21e0b3f0f3abbc3248767b9506d54d7763665a81 (patch)
treea51401e6cf0838a09c0d058ba1bd5dbbeb347ee8 /src/content/dependencies/transformContent.js
parentdc8cc7f42d1d7f6d87252da13b15b177317f362f (diff)
content: transformContent: style cleanup
Diffstat (limited to 'src/content/dependencies/transformContent.js')
-rw-r--r--src/content/dependencies/transformContent.js51
1 files changed, 37 insertions, 14 deletions
diff --git a/src/content/dependencies/transformContent.js b/src/content/dependencies/transformContent.js
index 318866c..909d0a4 100644
--- a/src/content/dependencies/transformContent.js
+++ b/src/content/dependencies/transformContent.js
@@ -4,31 +4,37 @@ import {parseInput} from '#replacer';
 import {Marked} from 'marked';
 
 export const replacerSpec = {
-  album: {
+  'album': {
     find: 'album',
     link: 'album',
   },
+
   'album-commentary': {
     find: 'album',
     link: 'albumCommentary',
   },
+
   'album-gallery': {
     find: 'album',
     link: 'albumGallery',
   },
-  artist: {
+
+  'artist': {
     find: 'artist',
     link: 'artist',
   },
+
   'artist-gallery': {
     find: 'artist',
     link: 'artistGallery',
   },
+
   'commentary-index': {
     find: null,
     link: 'commentaryIndex',
   },
-  date: {
+
+  'date': {
     find: null,
     value: (ref) => new Date(ref),
     html: (date, {html, language}) =>
@@ -36,11 +42,13 @@ export const replacerSpec = {
         {datetime: date.toUTCString()},
         language.formatDate(date)),
   },
+
   'flash-index': {
     find: null,
     link: 'flashIndex',
   },
-  flash: {
+
+  'flash': {
     find: 'flash',
     link: 'flash',
     transformName(name, node, input) {
@@ -53,64 +61,79 @@ export const replacerSpec = {
       }
     },
   },
+
   'flash-act': {
     find: 'flashAct',
     link: 'flashAct',
   },
-  group: {
+
+  'group': {
     find: 'group',
     link: 'groupInfo',
   },
+
   'group-gallery': {
     find: 'group',
     link: 'groupGallery',
   },
-  home: {
+
+  'home': {
     find: null,
     link: 'home',
   },
+
   'listing-index': {
     find: null,
     link: 'listingIndex',
   },
-  listing: {
+
+  'listing': {
     find: 'listing',
     link: 'listing',
   },
-  media: {
+
+  'media': {
     find: null,
     link: 'media',
   },
+
   'news-index': {
     find: null,
     link: 'newsIndex',
   },
+
   'news-entry': {
     find: 'newsEntry',
     link: 'newsEntry',
   },
-  root: {
+
+  'root': {
     find: null,
     link: 'root',
   },
-  site: {
+
+  'site': {
     find: null,
     link: 'site',
   },
-  static: {
+
+  'static': {
     find: 'staticPage',
     link: 'staticPage',
   },
-  string: {
+
+  'string': {
     find: null,
     value: (ref) => ref,
     html: (ref, {language, args}) => language.$(ref, args),
   },
-  tag: {
+
+  'tag': {
     find: 'artTag',
     link: 'tag',
   },
-  track: {
+
+  'track': {
     find: 'track',
     link: 'track',
   },