| 3 | import { PluginSettingTab, Setting, App } from 'obsidian'; |
| 4 | |
| 5 | export interface EmbedCodeFileSettings { |
| 6 | includedLanguages: string; |
| 7 | titleBackgroundColor: string; |
| 8 | titleFontColor: string; |
| 9 | } |
| 10 | |
| 11 | export const DEFAULT_SETTINGS: EmbedCodeFileSettings = { |
| 12 | includedLanguages: 'c,cpp,java,python,go,ruby,javascript,js,typescript,ts,shell,sh,bash', |
nothing calls this directly
no outgoing calls
no test coverage detected