Skip to content

Commit f8daaf7

Browse files
committed
Update marked import, fixes #8
1 parent 723d6cb commit f8daaf7

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

Readme.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## <span class="logo"><a href="https://needle.tools">!=</a></span>unity package mirror
1+
## Unity Package Mirror
22

33
#### [All Unity Packages on GitHub](https://github.com/needle-mirror/)
44

@@ -103,13 +103,6 @@ Of course it's totally ok that there are submodules for heavy test data, but emb
103103

104104
Overall, quality of Changelogs definitely increases over time — seems more and more teams are aware of how important a good changelog is. Thank you!
105105

106-
#### Open questions
107-
108-
We haven't fully understood how Unity determines which packages to show in Package Manager.
109-
For example, URP 6.x is only visible in Unity 2019.2, but not in 2019.3 or 2020.1 — package.json only specifies a min version, not a max version.
110-
111-
If someone knows, please tell us on Twitter!
112-
113106
#### Known Issues
114107

115108
Currently, it's not easy to see:

index.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44
<meta charset="utf-8"/>
55
<title>needle — unity package mirror</title>
66
<link rel="stylesheet" type="text/css" href="css/splendor.css">
7-
<link rel="stylesheet" type="text/css" href="https://needle.tools/css/custom.css">
87
</head>
98
<body>
109
<div id="content"></div>
11-
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
1210
<!-- <script src="https://unpkg.com/browse/dompurify/dist/purify.min.js"></script> -->
13-
<script>
11+
<script type="module">
12+
import { marked } from 'https://cdn.jsdelivr.net/npm/marked/lib/marked.esm.js';
1413
fetch('Readme.md')
1514
.then(response => response.text())
1615
.then((data) => {

0 commit comments

Comments
 (0)