-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
177 lines (143 loc) · 5.96 KB
/
index.html
File metadata and controls
177 lines (143 loc) · 5.96 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<title>Markdown - Documentation Format Guide</title>
</head>
<body class="layout bg" toc>
<div class="body">
<div class="inside">
<h2>Markdown</h2>
<div class="card">
<h3>GitHub - Mastering Markdown</h3>
<a href="https://guides.github.com/features/mastering-markdown/#syntax"
>https://guides.github.com/features/mastering-markdown/#syntax</a
>
<br />
<a href="https://help.obsidian.md/advanced-syntax">g(obsidian Advanced formatting syntax)</a>
<br />
<a href="https://www.markdownguide.org/basic-syntax/">https://www.markdownguide.org/basic-syntax/</a>
<h2>Github tables</h2>
<script type="editor" data-lang="sh">
| Before |
| ------------- |
| stuff |
| stuff |
| stuff |
| stuff |
| stuff |
| stuff |
| After |
| ------------- |
| stuff |
| stuff |
| stuff |
| stuff |
| stuff |
| stuff |
| stuff |
| stuff |
</script>
<h2>Enhance IDE Navigation LINK.md</h2>
<script type="editor" data-lang="sh">
[link](../src_here#L1048)
```js
```
------
# for IntelliJ use LINKS.js
src/main/java/com/service/controller/ProductController.java:112
@PutMapping("/product/{id}/go")
</script>
<h2>diff</h2>
<script type="editor" data-lang="sh">
```diff
"dependencies": {
- "fetch": "^6.0.2",
+ "fetch": "^7.0.0",
- "data": "^6.5.0",
+ "data": "^7.0.0",
- "plugin-workbox": "^6.4.1",
+ "plugin-workbox": "^7.0.0",
}
```
// see example: GITHUB_SOURCES_PREFIX/blob/master/pages/markdown/makdown.md
</script>
<h2>Web Component</h2>
<a href="https://github.com/MarketingPipeline/Markdown-Tag"
>https://github.com/MarketingPipeline/Markdown-Tag</a
>
<h2>Github relative links</h2>
<script type="editor" data-lang="sh">
[title](../README.md)
# or
[title](/README.md)
# to point to README.md in the main directory from anywhere
</script>
<h3>dillinger.io</h3>
<a href="https://www.markdownguide.org/basic-syntax/">https://www.markdownguide.org/basic-syntax/</a>
<h3>Emoji</h3>
<a href="https://www.webpagefx.com/tools/emoji-cheat-sheet/"
>https://www.webpagefx.com/tools/emoji-cheat-sheet/</a
>
<h3><summary><details></h3>
<a href="https://www.npmjs.com/package/xlsx#installation">https://www.npmjs.com/package/xlsx#installation</a>
<script type="editor" data-lang="sh">
<details>
<summary><h3>Pro-Tips</h3></summary>
stuff
<details>
</script>
<h2>NOTE, HINT, TIP, WARNING, CAUTION</h2>
<a href="https://github.com/orgs/community/discussions/16925"
>g([Markdown] An option to highlight a "Note" and "Warning" using blockquote (Beta))</a
>
<script type="editor" data-lang="sh">
>
> [!NOTE]
> Highlights information that users should take into account, even when skimming.
>
> [!TIP]
> Optional information to help a user be more successful.
> [!IMPORTANT]
> Crucial information necessary for users to succeed.
> [!WARNING]
> Critical content demanding immediate user attention due to potential risks.
> [!CAUTION]
> Negative potential consequences of an action.
</script>
<h2>Callout box examples</h2>
<a href="https://stopsopa.github.io/alert-webcomponent">https://stopsopa.github.io/alert-webcomponent</a>
<div class="stnostte">This is a NOTE callout.</div>
<div class="tip">This is a TIP callout.</div>
<div class="important">This is an IMPORTANT callout.</div>
<div class="warning">This is a WARNING callout.</div>
<div class="cstaution">This is a CAUTION callout.</div>
<div class="estrror">This is an ERROR callout.</div>
<script type="editor" data-lang="html">
<div class="stnostte">This is a NOTE callout.</div>
<div class="tip">This is a TIP callout.</div>
<div class="important">This is an IMPORTANT callout.</div>
<div class="warning">This is a WARNING callout.</div>
<div class="cstaution">This is a CAUTION callout.</div>
<div class="estrror">This is an ERROR callout.</div>
</script>
<h2>Expand - details summary</h2>
<script type="editor" data-lang="sh">
<details>
<summary>👉 <b>Show more details</b></summary>
- Subroutines can appear before the groups they reference.
- Although subroutines can be chained to any depth, a descriptive error is thrown if they're used recursively. Support for recursion can be added via a plugin (see [*Recursion*](#recursion)).
- Like backreferences, subroutines can't be used *within* character classes.
- As with all extended syntax in `regex`, subroutines are applied after interpolation, giving them maximal flexibility.
</details>
</script>
</div>
</div>
</div>
<script type="module" src="/js/github.js"></script>
</body>
</html>