Skip to content

Commit

Permalink
Update marked import, fixes #8
Browse files Browse the repository at this point in the history
  • Loading branch information
hybridherbst committed Aug 28, 2024
1 parent 723d6cb commit f8daaf7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
9 changes: 1 addition & 8 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## <span class="logo"><a href="https://needle.tools">!=</a></span>unity package mirror
## Unity Package Mirror

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

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

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

#### Open questions

We haven't fully understood how Unity determines which packages to show in Package Manager.
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.

If someone knows, please tell us on Twitter!

#### Known Issues

Currently, it's not easy to see:
Expand Down
5 changes: 2 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
<meta charset="utf-8"/>
<title>needle — unity package mirror</title>
<link rel="stylesheet" type="text/css" href="css/splendor.css">
<link rel="stylesheet" type="text/css" href="https://needle.tools/css/custom.css">
</head>
<body>
<div id="content"></div>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<!-- <script src="https://unpkg.com/browse/dompurify/dist/purify.min.js"></script> -->
<script>
<script type="module">
import { marked } from 'https://cdn.jsdelivr.net/npm/marked/lib/marked.esm.js';
fetch('Readme.md')
.then(response => response.text())
.then((data) => {
Expand Down

0 comments on commit f8daaf7

Please sign in to comment.