-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocsify-rtl.ts
35 lines (33 loc) · 952 Bytes
/
docsify-rtl.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
export interface RTLConfig {
body?: "rtl" | "ltr";
side?: "rtl" | "ltr";
bdo?: "rtl" | "ltr";
}
export const install = (hook: any, vm: any) => {
const config = Object.assign(
{},
{
body: "rtl",
side: "rtl",
bdo: "rtl"
},
vm.config.rtl
);
hook.ready(function() {
for (let item of document.getElementsByTagName("body") as any) {
item.dir = config.body;
}
for (let item of document.getElementsByClassName("sidebar") as any) {
item.dir = config.side;
}
for (let item of document.getElementsByTagName("bdo") as any) {
item.dir = config.bdo;
}
for (let item of document.getElementsByTagName("pre") as any) {
item.dir = "ltr";
}
for (let item of document.getElementsByTagName("code") as any) {
item.dir = "ltr";
}
});
};