markdown-to-html-cli 3.2.13 → 3.2.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/nodes/dark-mode.js +1 -1
- package/lib/nodes/dark-mode.js.map +1 -1
- package/lib/nodes/github-corners.js +36 -33
- package/lib/nodes/github-corners.js.map +1 -1
- package/package.json +3 -4
- package/src/cli.ts +5 -0
- package/src/create.ts +101 -0
- package/src/index.ts +113 -0
- package/src/nodes/copy.ts +148 -0
- package/src/nodes/dark-mode.ts +31 -0
- package/{github-fork-ribbon.css → src/nodes/github-corners-fork.ts} +38 -1
- package/src/nodes/github-corners.ts +116 -0
- package/src/nodes/markdown-style.ts +1047 -0
- package/src/nodes/octiconLink.ts +12 -0
- package/src/utils.ts +50 -0
- package/github.css +0 -32
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { Element } from 'hast';
|
|
2
|
+
|
|
3
|
+
interface GithubCorners {
|
|
4
|
+
href?: string;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @uiw/github-corners@1.5.10
|
|
9
|
+
* https://github.com/uiwjs/react-github-corners
|
|
10
|
+
*/
|
|
11
|
+
const scriptString = `const TEMPLATE = document.createElement("template");
|
|
12
|
+
TEMPLATE.innerHTML = \`
|
|
13
|
+
<style>
|
|
14
|
+
:host a:hover .octo-arm {
|
|
15
|
+
animation: octocat-wave 560ms ease-in-out;
|
|
16
|
+
}
|
|
17
|
+
@keyframes octocat-wave {
|
|
18
|
+
0%, 100% {
|
|
19
|
+
transform: rotate(0);
|
|
20
|
+
}
|
|
21
|
+
20%, 60% {
|
|
22
|
+
transform: rotate(-25deg);
|
|
23
|
+
}
|
|
24
|
+
40%, 80% {
|
|
25
|
+
transform: rotate(10deg);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
@media (max-width:500px) {
|
|
29
|
+
:host a:hover .octo-arm {
|
|
30
|
+
animation: none;
|
|
31
|
+
}
|
|
32
|
+
:host .octo-arm {
|
|
33
|
+
animation: octocat-wave 560ms ease-in-out;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
</style>
|
|
37
|
+
<svg width="80" height="80" viewBox="0 0 250 250" aria-hidden="true" style="position: absolute; border: 0px; top: 0px;">
|
|
38
|
+
<a xlink:href="https://github.com/uiwjs/react-github-corners" target="_blank" rel="nofollow sponsored" style="fill: rgb(21, 21, 19); color: rgb(255, 255, 255);">
|
|
39
|
+
<g>
|
|
40
|
+
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
|
|
41
|
+
<path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" class="octo-arm" style="transform-origin: 130px 106px;"></path>
|
|
42
|
+
<path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path>
|
|
43
|
+
</g>
|
|
44
|
+
</a>
|
|
45
|
+
</svg>
|
|
46
|
+
\`;
|
|
47
|
+
export class GithubCorners extends HTMLElement {
|
|
48
|
+
constructor() {
|
|
49
|
+
super();
|
|
50
|
+
this.right = '0';
|
|
51
|
+
this.shadow = this.attachShadow({ mode: 'open' });
|
|
52
|
+
this.shadow.appendChild(this.ownerDocument.importNode(TEMPLATE.content, true));
|
|
53
|
+
this.update();
|
|
54
|
+
}
|
|
55
|
+
static get observedAttributes() {
|
|
56
|
+
return ['z-index', 'target', 'height', 'width', 'href', 'color', 'fill', 'position', 'top', 'left', 'right', 'bottom', 'transform'];
|
|
57
|
+
}
|
|
58
|
+
setAttr(name, value) {
|
|
59
|
+
const svg = this.shadow.querySelector('svg');
|
|
60
|
+
if (/(href)/.test(name.toLocaleLowerCase())) {
|
|
61
|
+
svg.lastElementChild.setAttribute('xlink:href', value);
|
|
62
|
+
}
|
|
63
|
+
else if (/(color|fill)/.test(name.toLocaleLowerCase())) {
|
|
64
|
+
svg.firstElementChild.style[name] = value;
|
|
65
|
+
}
|
|
66
|
+
else if (/(z-index|height|width|position|top|left|right|bottom|transform)/.test(name.toLocaleLowerCase())) {
|
|
67
|
+
svg.style[name] = value;
|
|
68
|
+
}
|
|
69
|
+
else {
|
|
70
|
+
svg.setAttribute(name, value);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
update() {
|
|
74
|
+
;
|
|
75
|
+
[...this.getAttributeNames(), 'right'].forEach((name) => {
|
|
76
|
+
const value = this.getAttribute(name) || this[name] || '';
|
|
77
|
+
this.setAttr(name, value);
|
|
78
|
+
});
|
|
79
|
+
}
|
|
80
|
+
attributeChangedCallback(name, oldValue, newValue) {
|
|
81
|
+
if (oldValue !== newValue) {
|
|
82
|
+
this.setAttr(name, newValue);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
customElements.define('github-corners', GithubCorners);`;
|
|
87
|
+
|
|
88
|
+
export function githubCorners(opts: GithubCorners): Element[] {
|
|
89
|
+
const { href } = opts;
|
|
90
|
+
if (!href) {
|
|
91
|
+
return;
|
|
92
|
+
}
|
|
93
|
+
return [
|
|
94
|
+
{
|
|
95
|
+
type: 'element',
|
|
96
|
+
tagName: 'github-corners',
|
|
97
|
+
properties: {
|
|
98
|
+
target: '__blank',
|
|
99
|
+
position: 'fixed',
|
|
100
|
+
href,
|
|
101
|
+
},
|
|
102
|
+
children: []
|
|
103
|
+
}, {
|
|
104
|
+
type: 'element',
|
|
105
|
+
tagName: 'script',
|
|
106
|
+
properties: {
|
|
107
|
+
type: 'module',
|
|
108
|
+
// src: 'https://unpkg.com/@uiw/github-corners?module',
|
|
109
|
+
},
|
|
110
|
+
children: [{
|
|
111
|
+
type: 'text',
|
|
112
|
+
value: scriptString,
|
|
113
|
+
}]
|
|
114
|
+
}
|
|
115
|
+
];
|
|
116
|
+
}
|