Skip to content

Commit ebd59e3

Browse files
authoredNov 3, 2021
Website: Use Keep markup to highlight code section (#3164)
1 parent 18c828a commit ebd59e3

File tree

2 files changed

+17
-15
lines changed

2 files changed

+17
-15
lines changed
 

‎assets/style.css

+2-1
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,10 @@ pre {
112112
overflow: auto;
113113
}
114114

115-
pre > code.highlight {
115+
mark {
116116
outline: .4em solid red;
117117
outline-offset: .4em;
118+
background-color: transparent;
118119
}
119120

120121
header,

‎index.html

+15-14
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,13 @@ <h1>Basic usage</h1>
133133
<pre><code>&lt;!DOCTYPE html>
134134
&lt;html>
135135
&lt;head>
136-
...</code>
137-
<code class="highlight">&lt;link href="themes/prism.css" rel="stylesheet" /></code>
138-
<code>&lt;/head>
136+
...
137+
<mark>&lt;link href="themes/prism.css" rel="stylesheet" /></mark>
138+
&lt;/head>
139139
&lt;body>
140-
...</code>
141-
<code class="highlight">&lt;script src="prism.js">&lt;/script></code>
142-
<code>&lt;/body>
140+
...
141+
<mark>&lt;script src="prism.js">&lt;/script></mark>
142+
&lt;/body>
143143
&lt;/html></code></pre>
144144

145145
<p>Prism does its best to encourage good authoring practices. Therefore, it only works with <code>&lt;code></code> elements, since marking up code without a <code>&lt;code></code> element is semantically invalid.
@@ -192,18 +192,18 @@ <h2 id="basic-usage-cdn">Usage with CDNs</h2>
192192
<pre><code>&lt;!DOCTYPE html>
193193
&lt;html>
194194
&lt;head>
195-
...</code>
196-
<code class="highlight">&lt;link href="https://{{cdn}}/prism@v1.x/themes/prism.css" rel="stylesheet" /></code>
197-
<code>&lt;/head>
195+
...
196+
<mark>&lt;link href="https://{{cdn}}/prism@v1.x/themes/prism.css" rel="stylesheet" /></mark>
197+
&lt;/head>
198198
&lt;body>
199-
...</code>
200-
<code class="highlight" style="display: inline-block; outline-offset: .2em; margin-bottom: .2em;"> &lt;script src="https://{{cdn}}/prism@v1.x/components/prism-core.min.js"&gt;&lt;/script&gt;
201-
&lt;script src="https://{{cdn}}/prism@v1.x/plugins/autoloader/prism-autoloader.min.js"&gt;&lt;/script&gt;</code>
202-
<code>&lt;/body>
199+
...
200+
<mark> &lt;script src="https://{{cdn}}/prism@v1.x/components/prism-core.min.js"&gt;&lt;/script&gt;
201+
&lt;script src="https://{{cdn}}/prism@v1.x/plugins/autoloader/prism-autoloader.min.js"&gt;&lt;/script&gt;</mark>
202+
&lt;/body>
203203
&lt;/html></code></pre>
204204

205205
<p>Please note that links in the above code sample serve as placeholders. You have to replace them with valid links to the CDN of your choice.</p>
206-
206+
207207
<p>CDNs which provide PrismJS are e.g. <a href="https://cdnjs.com/libraries/prism">cdnjs</a>, <a href="https://www.jsdelivr.com/package/npm/prismjs">jsDelivr</a>, and <a href="https://unpkg.com/browse/prismjs@1/">UNPKG</a>.</p>
208208

209209
<h2 id="basic-usage-bundlers">Usage with Webpack, Browserify, & Other Bundlers</h2>
@@ -322,6 +322,7 @@ <h1>Credits</h1>
322322

323323
<script src="assets/vendor/utopia.js"></script>
324324
<script src="prism.js"></script>
325+
<script src="plugins/keep-markup/prism-keep-markup.js"></script>
325326
<script src="components.js"></script>
326327
<script src="assets/code.js"></script>
327328
<script>

0 commit comments

Comments
 (0)
Please sign in to comment.