Skip to content

Support for additional inline ln: ranges in a single code block #143

@SlyCedix

Description

@SlyCedix

It would be nice to be able to "interrupt" the flow of lines and start from a new offset to, for example, display breadcrumbs as follows:

```c file:app.c ln:5260
void send_stats(void) {  // interpret voltage and current accum for rms value as
                         // well as freq, PF and total watts
    // Actual DSP response \ln:5297
    sprintf(string1, "^%04d", DSP_UNIT_ADDR);
    stringPointer = string1;
    WriteString();
    if ((DSP_CONTROL_MODE & 0x80) > 0) {
        sprintf(string1,
                ",%05.1f,%05.1f,%05.1f",
                SystemStats[VA_LL],
                SystemStats[VB_LL],
                SystemStats[VC_LL]);
        stringPointer = string1;
        WriteString();
    }
```

might render as:
Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions