mirror of
https://github.com/ozavodny/obsidian-copy-inline-code-plugin.git
synced 2026-07-22 08:10:25 +00:00
8 lines
259 B
TypeScript
8 lines
259 B
TypeScript
import { Plugin } from 'obsidian';
|
|
import { copyPlugin as copyInlineCodePlugin } from './copy-inline-code-view-plugin';
|
|
|
|
export default class CopyInlineCodePlugin extends Plugin {
|
|
async onload() {
|
|
this.registerEditorExtension([copyInlineCodePlugin]);
|
|
}
|
|
}
|