utilities cleanup

This commit is contained in:
lightling 2024-03-15 01:29:34 -04:00
parent 8f26249a04
commit 6577c37cb8
4 changed files with 13 additions and 2 deletions

View file

@ -1,7 +1,7 @@
import rfdc from 'rfdc'
import { type DateRange } from 'src/types/shared/dateRange'
import { type FilterState } from 'src/types/shared/filter'
import { type FilterState } from 'src/types/projects/filter'
export const deepCopy = rfdc()

View file

@ -1,6 +1,6 @@
import DOMPurify from 'dompurify'
import yaml from 'js-yaml'
import { marked } from 'marked'
import yaml from 'js-yaml'
/**
* Config used for DOMPurify.

View file

@ -6,6 +6,11 @@ let sectionLevel = 1
const sectionRegexps = new Array(7).fill(undefined).map((_, i) => new RegExp(`^ {0,3}(#{${i + 1}} )[^]*?(?:\\n(?=\\1)|$)`))
const headingRegex = new RegExp(/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/)
/**
* Extension which creates sections for each heading found in a markdown document,
* using the {@link GithubSlugger} to additionally create id's for each section.
* @returns marked extension factory
*/
export const headingSectionsExtension = (): MarkedExtension => {
return {
hooks: {

View file

@ -1,6 +1,12 @@
import { useRoute } from 'vue-router'
import { deepCopy } from './dom'
/**
* Gets the current route from useRoute
* after performing some additional checks
* to ensure consistency across the site.
* @returns a slightly modified {@link useRoute} route
*/
export const getCurrentRoute = () => {
const route = deepCopy(useRoute())
if (route.path !== '/' && route.path.endsWith('/')) {