Wikidot 的語法 (Syntax)

Wikidot

簡介

申請使用

操作介面

網站管理

帳戶管理

基本語法

模組

樣板

嵌入服務

嵌入HTML

數學式

CSS 排版

問與答

Facebook

訊息

相關網站

參考文獻

最新修改

簡體版

English

Wikidot 的語法大致上與維基百科的語法相同,但是也有一些不同之處,並不完全相容。

在 Wikidot 當中,您可以很容易的編輯標題、超連結、字型、字體、表格、或加入程式碼等,以下是一些基本的語法。

語法 功能 顯示結果
//italic text// 斜體 italic text
**bold text** 粗體 bold text
//**italic and bold**// 又斜又粗 italic and bold
__underline text__ 底線 underline text
--strikethrough text-- 刪除線 strikethrough text
{{teletype (monospaced) text}} 單間距 teletype (monospaced) text
normal^^superscript^^ 上標 normalsuperscript
normal,,subscript,, 下標 normalsubscript
[!-- invisible comment --] 註解
[[span style="color:red"]] custom //span// element[[/span]] 區塊 custom span element
##blue|predefined## or ##44FF88|custom-code## color 設定顏色 predefined or custom-code color

標題

+ Level 1 Heading  -- 第一層標題,最大
++ Level 2 Heading  -- 第二層標題
+++ Level 3 Heading  -- 第三層標題
++++ Level 4 Heading  -- 第四層標題
+++++ Level 5 Heading  -- 第五層標題
++++++ Level 6 Heading  -- 第六層標題,最小

項目

無編號項目 (原始碼)

* Bullet 1
* Bullet 2
 * Bullet 2.1

顯示結果

  • Bullet 1
  • Bullet 2
    • Bullet 2.1

有編號項目 (原始碼)

# Item 1
# Item 2
 # Item 2.1

顯示結果

  1. Item 1
  2. Item 2
    1. Item 2.1

參雜有編號無編號的情況

# Item 1
 * Item 1.1
 * Item 1.2
# Item 2
 # Item 2.1
 # Item 2.2
 # Item 2.3
  1. Item 1
    • Item 1.1
    • Item 1.2
  2. Item 2
    1. Item 2.1
    2. Item 2.2
    3. Item 2.3

程式區塊 (或稱不排版區塊)

原始碼

[[code]]
This is an example code block!
[[/code]]

顯示結果

This is an example code block!

您也可以真的放入程式,如果指定程式語言,Wikidot 還會自動幫您上色,以下是一個 PHP 程式的範例。

原始碼

[[code type="php"]]
<?php
/* comment */
for($i=0; $i<100; $i++){
echo "number".$i."\n";
}
?>
[[/code]]

顯示結果

<?php
/* comment */
for($i=0; $i<100; $i++){
echo "number".$i."\n";
}
?>

HTML 區塊

原始碼

[[html]]
<h1>Custom HTML</h1>
<p>Something else</p>
<img src="anything.png" alt="hello ;-)"/>
[[/html]]

顯示結果

簡易表格

原始碼

||~ head 1 ||~ head 2 ||~ head 3 ||
|| cell 1 || cell 2 || cell 3 ||
|||| long cell 4 || cell 5 ||
||cell 6 |||| long cell 7 ||
|||||| looong cell 8||

顯示結果

head 1 head 2 head 3
cell 1 cell 2 cell 3
long cell 4 cell 5
cell 6 long cell 7
looong cell 8

檔案圖片

附加圖片

[[image image-source attribute1="value1" attribute2="value2" ...]]

附加檔案

[[file filename | custom-text]]

以上僅是 Wikidot 語法當中,筆者最常用的一部份,其餘的語法請參考 Wikidot 的語法說明,網址如下。

Wikidot Documentation : Wiki Syntax — http://www.wikidot.com/doc:wiki-syntax

Facebook

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License