# configuration/constants/code.constants.ts

> 13 lines of code and 13 definitions.

Tree: Site tree
Language: typescript
Layer: infrastructure
Canonical: https://banes-lab.com/anatomy/tree#file-configuration-constants-code-constants-ts
Source text: https://banes-lab.com/assets/sources/source.37b2456727475c332ca07e5f82074d7029fa549df950ba0c2de2753c069e94b4.generated.txt

## Definitions

- `COLLAPSED_LINE_LIMIT` (lexical_declaration, line 1, exported)
- `EXPANDABLE_CLASS` (lexical_declaration, line 3, exported)
- `LANGUAGE_ATTRIBUTE` (lexical_declaration, line 5, exported)
- `LINE_BREAK` (lexical_declaration, line 7, exported)
- `TEXT_LANGUAGE` (lexical_declaration, line 9, exported)
- `PAG_LANGUAGE` (lexical_declaration, line 11, exported)
- `BNF_LANGUAGE` (lexical_declaration, line 13, exported)
- `JAVASCRIPT_LANGUAGE` (lexical_declaration, line 15, exported)
- `JSON_LANGUAGE` (lexical_declaration, line 17, exported)
- `MARKDOWN_LANGUAGE` (lexical_declaration, line 19, exported)
- `MERMAID_LANGUAGE` (lexical_declaration, line 21, exported)
- `TYPESCRIPT_LANGUAGE` (lexical_declaration, line 23, exported)
- `YAML_LANGUAGE` (lexical_declaration, line 25, exported)

## Source

```typescript
export const COLLAPSED_LINE_LIMIT = 13;

export const EXPANDABLE_CLASS = "expandable";

export const LANGUAGE_ATTRIBUTE = "data-language";

export const LINE_BREAK = "\n";

export const TEXT_LANGUAGE = "text";

export const PAG_LANGUAGE = "pag";

export const BNF_LANGUAGE = "bnf";

export const JAVASCRIPT_LANGUAGE = "javascript";

export const JSON_LANGUAGE = "json";

export const MARKDOWN_LANGUAGE = "markdown";

export const MERMAID_LANGUAGE = "mermaid";

export const TYPESCRIPT_LANGUAGE = "typescript";

export const YAML_LANGUAGE = "yaml";
```
