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

# Fence

> Display a code block

````liquid theme={null}
```language query_name
  content
```
````

## Examples

### Basic Usage

````liquid theme={null}
```language query_name
  content
```
````

### Define a SQL query

````liquid theme={null}
```sql electronics_orders
  SELECT * FROM demo.daily_orders WHERE category = 'Electronics'
```

<!-- Use the query in other components -->
{% table data="electronics_orders" /%}
````

## Attributes

<ResponseField name="language" type="string">
  The language of the code block
</ResponseField>

<ResponseField name="content" type="string">
  The content of the code block
</ResponseField>

<ResponseField name="meta" type="string">
  Optional name for the code block. If provided and language is "sql", this will register the query as an inline query that can be used by other components. Inline queries must be defined at the top level of the page, not inside other components (e.g. tabs, accordion, details).
</ResponseField>

<ResponseField name="width" type="number">
  Set the width of this component (in percent) relative to the page width
</ResponseField>
