Skip to content
Snippets Groups Projects

Resolve "footnote markdown"

Merged Remi PLANEL requested to merge footnote-markdown into dev
8 files
+ 100
18
Compare changes
  • Side-by-side
  • Inline
Files
8
+ 0
16
@@ -13,8 +13,6 @@ function toggleTheme() {
@@ -13,8 +13,6 @@ function toggleTheme() {
theme.global.name.value = theme.global.current.value.dark ? "light" : "dark";
theme.global.name.value = theme.global.current.value.dark ? "light" : "dark";
}
}
const sections = ref([
const sections = ref([
{
{
id: "webservice",
id: "webservice",
@@ -27,20 +25,6 @@ const sections = ref([
@@ -27,20 +25,6 @@ const sections = ref([
]);
]);
// const computedSections = computed(() => {
// return sections.value.map(section => {
// if (section?.to) {
// const { refinedUrl } = useRefinedUrl(section.to)
// return { ...section, to: refinedUrl.value }
// }
// else {
// return section
// }
// })
// })
const drawer = ref(true);
const drawer = ref(true);
Loading