Expand description
Chunk option value classification for Quarto/RMarkdown code blocks.
This module distinguishes between simple literal values (booleans, numbers, strings) and complex R expressions (function calls, variables, etc.) to determine which chunk options can be safely converted to hashpipe format.
Enums§
- Chunk
Option Value - Classification of chunk option values for conversion to hashpipe format.
Functions§
- classify_
value - Classify a chunk option value as either simple (convertible) or expression (skip).
- hashpipe_
comment_ prefix - Get hashpipe comment prefix for a code chunk language.
- is_
boolean_ literal - Check if a string is an R boolean literal.
- is_
numeric_ literal - Check if a string is a numeric literal.
- is_
quoted_ string - Check if a string is a quoted string literal.