已知的故障

列出 Prism 錯誤突出顯示程式碼的罕見邊緣範例。

有某些邊緣範例 Prism 會失敗。在每個基於正規表示式的語法螢光筆中總是會有此類問題。
但是,Prism 敢於公開誠實地說明這些問題。如果故障在此列出,並不代表永遠不會修正。這比較像是「已知錯誤」清單,只是關於特定類型的錯誤。

註解僅支援一個層級的巢狀

(* Nested block
	(* comments
		(* on more than
		2 levels *)
	are *)
not supported *)

巢狀區塊註解

#cs
	#cs
		foo()
	#ce
#ce

在 C 區段中兩層巢狀

{
	if($1) {
		if($2) {

		}
	}
} // <- Broken
%%
%%

註解僅支援一個層級的巢狀

/+ /+ /+ this does not work +/ +/ +/

標記字串僅支援一個層級的巢狀

q{ q{ q{ this does not work } } }

單引號字串中的字串內插

'#{:atom} <- this should not be highligted'

同行的兩個除法

2 / 3 / 4

數字開頭的名稱

The box 1A is a container

字串內插包含一個結束花括號

`${ /* } */ a + b }`
`${ '}' }`

深入巢狀花括號的字串內插

`${foo({ a: { b: { c: true } } })}`

@ 規則看起來像變數

@import "some file.less";

@ 規則包含內插

@import "@{themes}/tidal-wave.less";

extend 未一貫突出顯示

nav ul {
  &:extend(.inline);
  background: blue;
}
.a:extend(.b) {}

未使用括號的單一字串參數函數未突出顯示

foobar"param";

有底線的數字

mov     ax,1100_1000b
mov     ax,1100_1000y
mov     ax,0b1100_1000
mov     ax,0y1100_1000

dd    1.222_222_222

註解開頭的程式碼區塊

# Doesn't work
# Does work
 # Does work when prefixed with a space

表達式中的註解會中斷文字和運算元

^if(
    $age>=4  # not too young
    && $age<=80  # and not too old
)

未突出顯示零元謂詞

halt.
trace.

:- if(test1).
section_1.
:- elif(test2).
section_2.
:- elif(test3).
section_3.
:- else.
section_else.
:- endif.

內插內有多個層級的巢狀花括號

"Foobar ${foo({
    bar => {baz => 42}
    baz => 42
})} <- broken"

包含 {} 字串的內插表達式

f"{'}'}"

全域內容以動詞突出顯示

\d .

內容表中未突出顯示任何內容

+---------------+----------+
| column 1     | column 2  |
+--------------+-----------+
| **bold**?    | *italic*? |
+--------------+-----------+

內聯標記辨識規則不像規格中那麼嚴格

下列程式碼中不應該突出顯示內聯標記。

2 * x a ** b (* BOM32_* ` `` _ __ |
"*" '|' (*) [*] {*} <*> ‘*’ ‚*‘ ‘*‚ ’*’ ‚*’ “*” „*“ “*„ ”*” „*” »*« ›*‹ «*» »*» ›*›

巢狀區塊註解

/* Nested block
	/* comments
	are */
not supported */

未使用花括號的封閉參數分隔符號

|x| x + 1i;

不支援已棄用的 Sass 語法

.page
  color = 5px + 9px

!width = 13px
.icon
  width = !width

包含偽類別的選擇器會突出顯示為屬性質/值對

a:hover
  text-decoration: underline

巢狀區塊註解

/* Nested block
	/* comments
	are */
not supported */

case-lambda 參數清單的第一個引數會突出顯示為函數

(define plus
	(case-lambda
		(() 0)
		((x) x)
		((x y) (+ x y))
		((x y z) (+ (+ x y) z))
		(args (apply + args))))

巢狀區塊註解

/* Nested block
	/* comments
	are */
not supported */

不支援 Textile 中的 HTML。

但 HTML 中的 Textile 應該是沒問題的。

<strong>This _should_ work properly.</strong>
*But this is <em>definitely</em> broken.*

包含 Twig 的標籤未突出顯示

<div{% if foo %} class="bar"{% endif %}></div>

不支援巢狀魔術字詞

{{#switch:{{PAGENAME}}
| L'Aquila = No translation
| L = Not OK
| L'Aquila = Entity escaping
| L'Aquila = Numeric char encoding
}}

不支援粗體和斜體巢狀

''Italic with '''bold''' inside''

主題

我們的某些主題與特定版面不符。

Coy

如果與 float 或 flexbox 版面結合,Coy 的陰影和背景可能會無法正確包覆程式碼。

解決方法

有 2 個可能的解決方法

第一個解決方法是設定 pre 元素的 display: flex-root; 。這樣會解決問題,但 flex-root 具有有限的瀏覽器支援

第二個解決方法是新增 clear: both;pre 元素的樣式。這樣會解決問題,但會改變程式碼區塊與其他元素重疊時的行為。