Site Notice
hello, world
Difference between revisions of "Highlight"
From Project-EPB Commons
([InPageEdit] 没有编辑摘要) |
([InPageEdit] 没有编辑摘要) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 6: | Line 6: | ||
// 显示行号 | // 显示行号 | ||
console.log('hello, world') | console.log('hello, world') | ||
− | |||
</pre> | </pre> | ||
<pre class="highlight lang-js" data-line-from="3"> | <pre class="highlight lang-js" data-line-from="3"> | ||
// 行号会从 3 开始 | // 行号会从 3 开始 | ||
− | console.log(' | + | console.log('Line 4!') |
− | + | console.log('Oh, that is five') | |
</pre> | </pre> | ||
− | <pre class="highlight lang-js" data-line-ping="2"> | + | <pre class="highlight lang-js" data-line-ping="[2,4]"> |
− | // | + | // 第 2 以及第 4 行会高亮显示 |
console.log('hello, world') | console.log('hello, world') | ||
+ | console.log('Oh, yeah') | ||
+ | console.log('I\'m pinged!') | ||
</pre> | </pre> | ||
+ | |||
+ | <source lang="php" line> | ||
+ | <?php | ||
+ | echo 'hey!'; | ||
+ | ?> | ||
+ | </source> |
Latest revision as of 23:29, 19 November 2020
console.log('hello, world')
// 显示行号 console.log('hello, world')
// 行号会从 3 开始 console.log('Line 4!') console.log('Oh, that is five')
// 第 2 以及第 4 行会高亮显示 console.log('hello, world') console.log('Oh, yeah') console.log('I\'m pinged!')
1 <?php
2 echo 'hey!';
3 ?>