-
Notifications
You must be signed in to change notification settings - Fork 1
/
export.html
62 lines (57 loc) · 1.34 KB
/
export.html
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Draw.io exporter</title>
<link
rel="stylesheet"
href="vendor/drawio/src/main/webapp/mxgraph/css/common.css"
charset="UTF-8"
type="text/css"
/>
<style>
body {
margin: 0;
}
@media print {
span.MathJax_SVG svg {
shape-rendering: crispEdges;
}
table.mxPageSelector {
display: none;
}
hr.mxPageBreak {
display: none;
}
}
@media screen {
table.mxPageSelector {
position: fixed;
right: 10px;
top: 10px;
font-family: Arial;
font-size: 10pt;
border: solid 1px darkgray;
background: white;
border-collapse: collapse;
}
table.mxPageSelector td {
border: solid 1px gray;
padding: 4px;
}
body.mxPage {
background: gray;
}
}
</style>
<script>
const mxLoadStylesheets = false;
</script>
<script src="vendor/drawio/src/main/webapp/js/app.min.js"></script>
<script>
Editor.initMath("vendor/drawio/src/main/webapp/math/MathJax.js");
</script>
<script src="export.js"></script>
</head>
<body></body>
</html>