> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kasoftware.com/llms.txt
> Use this file to discover all available pages before exploring further.

# arc:include

> 內聯包含其它檔案中的 ArcScript，在解析時用指定檔案的完整內容替換該關鍵字。

export const siteNameShort = "知行之橋";

arc:include 關鍵字用來包含其它檔案的 ArcScript。像其它語言中傳統的包含一樣，arc:include 會被 file 參數中指定的檔案內容所替代。

## 參數

* file | document：要被包含的檔名稱。
* language：檔案的編寫語言。

## 控制屬性

無

## 範例

在每個指令碼中匯入屬性（`companyname`, `copyright`），而無需重複操作：

```xml theme={null}
<arc:include file="globals.rsb"/> 
[companyname] 
[copyright] 
<arc:call ...>
```
