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' }