Skip to content

Commit

Permalink
Fix @context
Browse files Browse the repository at this point in the history
  • Loading branch information
compulim committed Sep 7, 2023
1 parent 2a9b0fd commit 7da377b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/commands/Citation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ async function processor(context: TurnContext) {
`,
entities: [
{
'@context': 'https://schema.org/',
'@context': 'https://schema.org',
'@id': 'cite:1',
'@type': 'Claim',
type: 'https://schema.org/Claim',
Expand Down Expand Up @@ -82,14 +82,14 @@ Configuring Proxy Auto-Discovery (PAD) proxy settings is a vital task for networ
`
},
{
'@context': 'https://schema.org/',
'@context': 'https://schema.org',
'@id': 'cite:2',
'@type': 'Claim',
type: 'https://schema.org/Claim',
text: 'Here is some plain text without any Markdown formatting in it.'
},
{
'@context': 'https://schema.org/',
'@context': 'https://schema.org',
'@type': 'ReplyAction',
type: 'https://schema.org/ReplyAction',

Expand All @@ -102,14 +102,14 @@ Configuring Proxy Auto-Discovery (PAD) proxy settings is a vital task for networ
}
},
{
'@context': 'https://schema.org/',
'@context': 'https://schema.org',
'@type': 'VoteAction',
type: 'https://schema.org/VoteAction',

actionOption: 'upvote'
},
{
'@context': 'https://schema.org/',
'@context': 'https://schema.org',
'@type': 'VoteAction',
type: 'https://schema.org/VoteAction',

Expand Down

0 comments on commit 7da377b

Please sign in to comment.