內容簡介
這個外掛可以讓你直接在編輯器中使用雙括號來編輯簡易的測驗題目。
一個快速問卷需要按照順序或無序清單。
以下是可能的答案類型:
在文字方塊中輸入正確答案:
必須在文字方塊中輸入正確答案。
<ul>
<li>法國的首都是……? {text{ 法國 }}</li>
</ul>
您還可以使用不區分大小寫的文字方塊,方法是使用 itext 屬性:
<ul>
<li>法國的首都是……? {itext{ 法國 }}</li>
</ul>
在文字方塊中輸入正確答案 - 可輸入多個答案:
必須在文字方塊中輸入正確答案。
<ul>
<li>法國或義大利的首都是……? {text{ 法國 | 羅馬 }}</li>
</ul>
在文字方塊中輸入正確答案 - 正則表示式:
如果您掌握了一些正則表示式技巧,也可以指定它:
<ul>
<li>法國或羅馬的首都是……? {reg{ /^(Paris|Rome)$/ }}</li>
</ul>
在單選按鈕中選擇正確答案:
所有可能的答案都用 | 分隔,正確答案必須用 * 標記。
答案顯示為單選框。
<ul>
<li>法國的首都是?{radio{ 巴黎* | 倫敦 | 柏林 }}</li>
</ul>
在多選框中選擇所有正確答案:
使用 * 標記標記所有正確答案。
答案顯示為多選框。
<ul>
<li>歐洲國家?{checkbox{ 法國* | 荷蘭* | 加拿大 }}</li>
</ul>
外掛標籤
開發者團隊
原文外掛簡介
Create simple exercises directly in the editor by putting the possible answer(s) in double brackets.
A quick questionnaire must be an ordered or unordened list.
The following types of answers are possible:
Enter the correct answer in a textbox:
The correct answer has to be entered in a textbox.
- The capital of France is ...? {text{ Paris }}
You can also use a case insensitive textbox by using the itext property:
- The capital of France is ...? {itext{ Paris }}
Enter the correct answer in a textbox – multiple answers possible:
The correct answer has to be entered in a textbox.
- The capital of France or Italy is ...? {text{ Paris | Rome }}
Enter the correct answer in a textbox – regular expression:
If you have some regular expression skills, you can also specify this:
- The capital of France or Rome is ...? {reg{ /^(Paris|Rome)$/ }}
Check the correct answer in radio buttons:
All possible answers are divided by |, the correct answer has to be marked with a *.
The answers are displayed as radio boxes.
- The capital of France? {radio{ Paris* | London | Berlin }}
Check all possible answers in checkboxes:
Mark alle correct answers with a *.
The answers are displayed as checkboxes.
- Countries of Europe? {checkbox{ France* | Netherlands* | Canada }}
