API Reference
ConvertTo-ImageStorySource
Converts exact source text into renderer-neutral syntax spans for visual stories.
Remarks
PowerShell uses the native System.Management.Automation parser. Other languages can provide an optional IStorySourceTokenizer adapter without adding parser dependencies to ChartForgeX.
Examples
Tokenize PowerShell source
PS>
$source = ConvertTo-ImageStorySource -Text 'Get-Process | Sort-Object CPU -Descending' -Language PowerShell
Returns exact source text with semantic spans suitable for New-ImageStoryPanel.
Common Parameters
This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters.
Syntax
ConvertTo-ImageStorySource [-Language <String>] -Text <String> [-Tokenizer <IStorySourceTokenizer>] [<CommonParameters>]#All Parameter SetsParameters
- Language String
- Language identifier. PowerShell uses its native parser; Plain preserves text without tokenization.
- Text String
- Exact source text, including whitespace and line endings.
- Tokenizer IStorySourceTokenizer
- Optional tokenizer adapter for C#, Bash, or another language.
Outputs
ChartForgeX.Stories.StorySourceText