Skip to content

Commit 2f31de4

Browse files
committed
fix url format for ScreenStart
1 parent f01f467 commit 2f31de4

1 file changed

Lines changed: 18 additions & 3 deletions

File tree

src/components/ScreenStart.vue

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,22 @@ export default defineComponent({
122122
const helpData = {
123123
type: {
124124
title: 'type',
125-
url: 'https://github.com/citation-file-format/citation-file-format/blob/1.2.0/schema-guide.md#type',
125+
url: [
126+
{
127+
text: 'Click here to see the documentation for type.',
128+
link: 'https://github.com/citation-file-format/citation-file-format/blob/1.2.0/schema-guide.md#type'
129+
}
130+
],
126131
description: 'The type of the work that is being described by this CITATION.cff file.'
127132
},
128133
title: {
129134
title: 'title',
130-
url: 'https://github.com/citation-file-format/citation-file-format/blob/1.2.0/schema-guide.md#title',
135+
url: [
136+
{
137+
text: 'Click here to see the documentation for .',
138+
link: 'https://github.com/citation-file-format/citation-file-format/blob/1.2.0/schema-guide.md#title'
139+
}
140+
],
131141
description: 'The name of the software or dataset.',
132142
examples: [
133143
'cffconvert',
@@ -137,7 +147,12 @@ export default defineComponent({
137147
},
138148
message: {
139149
title: 'message',
140-
url: 'https://github.com/citation-file-format/citation-file-format/blob/1.2.0/schema-guide.md#message',
150+
url: [
151+
{
152+
text: 'Click here to see the documentation for message.',
153+
link: 'https://github.com/citation-file-format/citation-file-format/blob/1.2.0/schema-guide.md#message'
154+
}
155+
],
141156
description: 'A message to the human reader of the CITATION.cff file to let them know what to do with the citation metadata.',
142157
examples: [
143158
'If you use this software, please cite it using the metadata from this file.',

0 commit comments

Comments
 (0)