https://github.com/discretetom/vscode-ifd-highlighter
VSCode extension for syntax highlighting of interactive fiction data file(IFD).
https://github.com/discretetom/vscode-ifd-highlighter
Last synced: 3 months ago
JSON representation
VSCode extension for syntax highlighting of interactive fiction data file(IFD).
- Host: GitHub
- URL: https://github.com/discretetom/vscode-ifd-highlighter
- Owner: DiscreteTom
- License: mit
- Created: 2019-06-04T05:52:29.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-27T06:42:52.000Z (almost 7 years ago)
- Last Synced: 2025-10-25T10:44:36.151Z (7 months ago)
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ifd-highlighter
Highlighter for ifd file(interactive fiction data)
## Usage
Ifd is a kind of file based on YAML, its a part of [if-maker](https://github.com/DiscreteTom/if-maker).
This extension provide syntax highlighting and code snippets for ifd files.
## Ifd schema
```yaml
include:
- other ifd file name
item-id:
name: string
description: string
classes:
- class name
onMount: |
python code here
^
onUnmount: |
python code here
^
data:
any data here
actions:
- name: string
code: |
python code here
^
```