> ## 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 关键字用来包含其它文件的 {siteNameShort}Script。像其它语言中传统的包含一样，arc:include 会被 file 参数中指定的文件内容所替代。

## 参数

* file | document：要被包含的文件名称。
* language：文件的编写语言。

## 控制属性

无

## 示例

在每个脚本中导入属性（`companyname`, `copyright`），而无需重复操作：

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