mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
5.3 KiB
5.3 KiB
title, date, collections, categories, tags
| title | date | collections | categories | tags | |||
|---|---|---|---|---|---|---|---|
| Code Block Test | 2025-11-28T15:16:35+08:00 |
|
|
|
Testing code block in FixIt theme.
🎉🥚 in development mode!
Multiple modes
// Classic mode
function add(a, b) {
return a + b
}
// Mac mode
function add(a, b) {
return a + b
}
// Simple mode
function add(a, b) {
return a + b
}
Code title
(r=()=>setInterval(t=>{for(j=o="\n",y=5;y--;document.body["inn"
+"erHTML"]="<pre><"+(S="script>\n")+o+"\n\n</"+S)for(x=-01;
63-!y>x++;o+=`(r=${r})()`[j++].fontcolor(c?'#FF0':"#444"))c=x/2
%4<3&&parseInt("odRFacb67o2vi5gmOZmwFNteohbOh3sw".slice(i="9"<(
D=Date()[16+(x/8|0)])?30:D*3,i+3),36)&1<<(x/2|0)%4+3*y},100))()
Code File Name
function hello(x = 'world') {
console.log(`Hello, ${x}!`)
}
hello()
// Hello, world!
hello('FixIt')
// Hello, FixIt!
Shadow
{{< tabs >}} {{% tab title="Always" %}}
function hello(x = 'world') {
console.log(`Hello, ${x}!`)
}
{{% /tab %}} {{% tab title="Hover" %}}
function hello(x = 'world') {
console.log(`Hello, ${x}!`)
}
{{% /tab %}} {{% tab title="Never" %}}
function hello(x = 'world') {
console.log(`Hello, ${x}!`)
}
{{% /tab %}} {{< /tabs >}}
Collapsed/Expanded
eval(z = 'p="<"+"pre>"/* ,.oq#+ ,._, */;for(y in n="zw24l6k\
4e3t4jnt4qj24xh2 x/* =<,m#F^ A W###q. */42kty24wrt413n243n\
9h243pdxt41csb yz/* #K q##H######Am */43iyb6k43pk7243nm\
r24".split(4)){/* dP cpq#q##########b, */for(a in t=pars\
eInt(n[y],36)+/* p##@###YG=[#######y */(e=x=r=[]))for\
(r=!r,i=0;t[a/* d#qg `*PWo##q#######D */]>i;i+=.05)wi\
th(Math)x-= /* aem1k.com Q###KWR#### W[ */.05,0>cos(o=\
new Date/1e3/* .Q#########Md#.###OP A@ , */+x/PI)&&(e[~\
~(32*sin(o)*/* , (W#####Xx######.P^ T % */sin(.5+y/7))\
+60] =-~ r);/* #y `^TqW####P###BP */for(x=0;122>\
x;)p+=" *#"/* b. OQ####x#K */[e[x++]+e[x++\
]]||(S=("eval"/* l `X#####D , */+"(z=\'"+z.spl\
it(B = "\\\\")./* G####B" # */join(B+B).split\
(Q="\'").join(B+Q/* VQBP` */)+Q+")//m1k")[x/2\
+61*y-1]).fontcolor/* TP */(/\\w/.test(S)&&"#\
03B");document.body.innerHTML=p+=B+"\\n"}setTimeout(z)')//
```lang {.is-collapsed}
// This code block will be collapsed by default.
```
```lang {.is-expanded}
// This code block will be expanded regardless of its length.
```
No wrapper
Set wrapper=false to disable code wrapper.
function add(a, b) {
return a + b
}
function add(a, b) {
return a + b
}
lineNos=false
function add(a, b) {
return a + b
}
lineNumbersInTable=false
Warning
Not recommended!
function add(a, b) {
return a + b
}
Diff Code
- theme = "LoveIt"
+ theme = "FixIt"
! enhancements and fixes
Long Code
<p>Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.</p>
<p>Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.</p>
Code block inside other blocks
[!NOTE]+
function add(a, b) { return a + b }
{{< typeit code=java >}} public class HelloWorld { public static void main(String []args) { System.out.println("Hello World"); } } {{< /typeit >}}
{{< details "Code Block inside Details" >}}
function add(a, b) {
return a + b
}
{{< /details >}}
Highlighting
Highlighting in code fences is enabled by default.
/**
* check if a string is a JS object string
* @example isObjectLiteral("{a:1,b:2}") // true
* @param {string} str string to check
* @returns {boolean} whether the string is a JS object string
*/
function isObjectLiteral(str) {
if (typeof str !== 'string') {
return false
}
str = str.replace(/\s+/g, ' ').trim().replace(/;$/, '')
if (str.startsWith('{') && str.endsWith('}')) {
return true
}
return false
}
Highlighting in shortcode highlight.
{{< highlight javascript "hl_lines=2 8-10,linenostart=287" >}} /**
- check if a string is a JS object string
- @example isObjectLiteral("{a:1,b:2}") // true
- @param {string} str string to check
- @returns {boolean} whether the string is a JS object string */ function isObjectLiteral(str) { if (typeof str !== 'string') { return false } str = str.replace(/\s+/g, ' ').trim().replace(/;$/, '') if (str.startsWith('{') && str.endsWith('}')) { return true } return false } {{< /highlight >}}
Gist Embed
{{< env "production" >}} {{< gist Lruihao fb8b2d0353465c4d40bf74818db80710 >}} {{< /env >}}