blob: 33ec626af39e5e0236608a5f3772d63fc0533edb (
plain) (
blame)
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
|
import React from 'dom-chef';
import select from 'select-dom';
import * as pageDetect from 'github-url-detection';
import features from '.';
const isSingleHTMLFile = (): boolean => pageDetect.isSingleFile() && /\.html?$/.test(location.pathname);
function init(): void {
const rawButton = select('a#raw-url')!;
rawButton
.parentElement! // `BtnGroup`
.prepend(
<a
className="btn btn-sm BtnGroup-item rgh-html-preview-link"
// #3305
href={`https://refined-github-html-preview.kidonng.workers.dev${rawButton.pathname}`}
>
Preview
</a>,
);
}
void features.add(import.meta.url, {
include: [
isSingleHTMLFile,
],
exclude: [
pageDetect.isEnterprise,
],
deduplicate: '.rgh-html-preview-link', // #3945
init,
});
|