From a6be8d9bc0e98f4d115a1d866e71f3ef5c867ea2 Mon Sep 17 00:00:00 2001 From: John Bintz <27256+johnbintz@users.noreply.github.com> Date: Tue, 22 Feb 2022 21:54:56 -0500 Subject: [PATCH] update changelog --- CHANGELOG | 2 ++ client/src/components/Note.vue | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 58efe47..7862807 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - UUIDs in URL are now Base64 encoded to shorten URLs. +- Syntax highlighting via Prism. +- More efficient note reloading. ## 0.1.0 - 2022-02-21 diff --git a/client/src/components/Note.vue b/client/src/components/Note.vue index f9fb6a4..d7b01c4 100644 --- a/client/src/components/Note.vue +++ b/client/src/components/Note.vue @@ -2,8 +2,6 @@ import { ref, computed, onMounted } from 'vue' import { marked } from 'marked' -console.log(Prism.languages) - const MAPPINGS = { golang: 'go' }