diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml index 26fcd39..eb7e1e8 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yaml +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -13,23 +13,6 @@ body: - Look at existing bug reports to see if your issue has already been reported. - Is this actually a bug? If this is something that you wish the plugin could do, please submit a feature request instead. - - type: textarea - id: input-data - attributes: - label: Input data (markdown source) - description: | - Include a sample markdown snippet that triggers the issue. Use backticks to format the code snippet. - - - ⚠️ Don't include personal or sensitive information - - 🚀 Use the Obsidian sandbox vault + this plugin and that snippet to ensure the issue is reproducible. - placeholder: | - I am trying to use this markdown to ... - - ```markdown - ``` - validations: - required: true - - type: textarea id: expected attributes: @@ -86,9 +69,9 @@ body: required: true - type: input - id: tasks-version + id: plugin-version attributes: - label: Tasks Plugin Version + label: Plugin Version description: Which plugin version are you using? placeholder: 1.11.0 validations: diff --git a/src/whitespace-Plugin.ts b/src/whitespace-Plugin.ts index e615962..5705e46 100644 --- a/src/whitespace-Plugin.ts +++ b/src/whitespace-Plugin.ts @@ -14,15 +14,16 @@ export const DEFAULT_SETTINGS: SWSettings = { patch: 0, }, disablePluginStyles: false, + enabled: true, + outlineListMarkers: false, + showAllCodeblockWhitespace: false, + showAllWhitespace: false, showBlockquoteMarkers: false, - showFrontmatterWhitespace: true, + showCodeblockWhitespace: false, showExtraWhitespace: false, + showFrontmatterWhitespace: true, showLineEndings: true, showTableWhitespace: true, - showCodeblockWhitespace: false, - showAllWhitespace: false, - outlineListMarkers: false, - enabled: true, }; export class ShowWhitespacePlugin extends Plugin {