Skip to content

Commit

Permalink
Added support for inline zotero tags
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanopagliari committed Jul 3, 2022
1 parent 232ce98 commit e3a2bcc
Show file tree
Hide file tree
Showing 8 changed files with 393 additions and 73 deletions.
Binary file removed .DS_Store
Binary file not shown.
Binary file removed .github/.DS_Store
Binary file not shown.
Binary file removed .github/workflows/.DS_Store
Binary file not shown.
19 changes: 16 additions & 3 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@ export const DEFAULT_SETTINGS: MyPluginSettings = {
commentPrependDefault: false,
commentPrependDivider: ": ",
commentAppendDivider: "-> ",
TagBeginningConfig: "Tag: ",
TagEndConfig: "",
TagDividerConfig: "; ",
keyH1: "#",
keyH2: "##",
keyH3: "###",
Expand All @@ -140,17 +143,27 @@ export const DEFAULT_SETTINGS: MyPluginSettings = {
isHighlightBullet: true,
isHighlightBlockquote: false,
isHighlightQuote: true,
highlightCustomTextBefore: "",
highlightCustomTextAfter: "",
isCommentItalic: false,
isCommentBold: true,
isCommentHighlighted: false,
isCommentBullet: false,
isCommentBlockquote: true,
isCommentQuote: false,
isDoubleSpaced: true,
highlightCustomTextBefore: "",
highlightCustomTextAfter: "",
commentCustomTextBefore: "",
commentCustomTextAfter: "",
isTagItalic: false,
isTagBold: false,
isTagHighlighted: false,
isTagBullet: false,
isTagBlockquote: false,
isTagQuote: false,
tagCustomTextBefore: "#",
tagCustomTextAfter: "",
tagCustomTextBeforeFirst: "",
tagCustomTextAfterLast: "",
isDoubleSpaced: true,
colourYellowText: "{{highlight}}",
colourPurpleText: "{{highlight}}",
colourRedText: "{{highlight}}",
Expand Down
Loading

0 comments on commit e3a2bcc

Please sign in to comment.