Markdown code (text) (inline).

interface InlineCode {
    data?: InlineCodeData;
    position?: "/home/runner/work/astro-node-fastify/astro-node-fastify/node_modules/@types/unist/index".Position;
    type: "inlineCode";
    value: string;
}

Hierarchy (view full)

Properties

Data associated with the mdast code (text).

Position of a node in a source document.

Nodes that are generated (not in the original source document) must not have a position.

type: "inlineCode"

Node type of mdast code (text).

value: string

Plain-text value.