# Test Page To Understand How Longform Compiles Plugin Output And Variables
![[Obsidian Longform and Publish - What Works#^ab4a8f]]
## Stand alone
### Text
Text
### Picture
![[Pasted image 20251228074151.png|200]] ^68dde7
### Dataview inline
`=this.file.name` ^645cc9
### Dataview
```dataview
TABLE WITHOUT ID file.link AS ""
WHERE date(file.frontmatter["file_modified"]) = date(this.file.name)
SORT file.name ASC
Limit 5
```
^9a4d3f
### Table
| Test Table | Test Column |
| ---------- | ------------------ |
| Let us | see how this works |
^8c0e97
### Metabind
Metabind text `INPUT[text: test_metabind_text ]`
Metabind select `INPUT[inlineSelect (option(option_1) , option(option_2)) : test_metabind_select ]` ^d7678d
### Bases
### Canvas
### Kanban
### Task
- [/] A Task [[3. Act 2b š]]
- [x] checked ā
2025-12-28
- [-] cancelled ā 2025-12-28
- [/] in progress
## Callouts
### Text
> [!NOTE] Regular Callout
> Contents
> [!impact] Special Callout
> Contents
### Picture
> [!NOTE] Picture Callout
> ![[Pasted image 20251228074151.png|200]]
### Dataview inline
> [!NOTE] Inline Dataview Callout
> `=this.file.name`
### Dataview
> [!NOTE] Dataview Callout
>
> ```dataview
> TABLE WITHOUT ID file.link AS ""
> WHERE date(file.frontmatter["file_modified"]) = date(this.file.name)
> SORT file.name ASC
> Limit 5
> ```
### Metabind
> [!warning] Metabind in Callout
>
> Metabind text `INPUT[text: test_metabind_text ]`
> Metabind select `INPUT[inlineSelect (option(option_1) , option(option_2)) : test_metabind_select ]`
### Table
> [!NOTE]
> Text before
>
> | Test Table | Test Column |
> | ---------- | ------------------ |
> | Let us | see how this works |
>
> Text below
### Task
> [!NOTE] task in callout
> - [ ] A Task
> - [x] checked ā
2025-12-28
> - [-] cancelled ā 2025-12-28
> - [/] in progress
## Embedded
### Task
```dataview
TASK
FROM ""
WHERE file.path = this.file.path
```
```tasks
path includes {{query.file.path}}
```