feat: add customizability

This commit is contained in:
kolaente 2023-11-14 19:04:48 +01:00
parent 16b0b703bb
commit 1a9b7e61e2
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 3 additions and 3 deletions

View File

@ -21,10 +21,10 @@ const props = defineProps({
<ul>
<li v-for="s in bib">
<template v-if="typeof s.author !== 'undefined' && s.author !== ''">
{{ s.author }},
<span class="author">{{ s.author }}</span>,
</template>
{{ s.title }}
<span class="title">{{ s.title }}</span>
<template v-if="s.date !== '' && typeof s.date !== 'undefined'">
, ({{ s.date }})

View File

@ -1,6 +1,6 @@
{
"name": "slidev-addon-bibliography",
"version": "1.2.0",
"version": "1.2.1",
"description": "Slidev addon to provide bibliography sources for presentations.",
"scripts": {
"dev": "slidev example.md",