generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.ts
44 lines (35 loc) · 1.07 KB
/
main.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { Plugin, MarkdownRenderer } from 'obsidian';
export default class CodeEmbed extends Plugin {
async onload() {
this.registerMarkdownCodeBlockProcessor("codefile", async (source, el, ctx) => {
const { vault } = this.app;
const rows = source.split("\n").filter((row) => row.length > 0);
if (rows.length == 0) {
return;
};
const tokens = rows[0].split(":");
let filename = ""
let language = ""
if (tokens.length == 1) {
filename = tokens[0];
} else if(tokens.length == 2) {
language = tokens[0];
filename = tokens[1];
}
const file = vault.getAbstractFileByPath(filename);
if (file != null) {
const fileContents = await vault.cachedRead(file);
let markdown = "```" + language;
markdown += "\r\n";
markdown += fileContents;
markdown += "```";
MarkdownRenderer.renderMarkdown(markdown, el, "", null);
//code.innerText = fileContents;
} else {
const pre = el.createEl("pre");
const code = pre.createEl("code");
code.innerText = "Could not load file " + filename;
}
});
}
}