backticks-codeblocks
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

backticks-codeblocks

Package provides a simple and efficient way to parse strings containing backticks. It differentiates between inline code, marked by single backticks, and code blocks, surrounded by triple backticks, and returns them as structured data. It's particularly useful for processing markdown text or any text that follows a similar convention for denoting code segments.

Installation

To install the package, use the following command:

npm install backticks-codeblocks

or if you use yarn

yarn add backticks-codeblocks

Usage

Import the processText function from the package and use it to parse a string with backticks:

import { processText } from 'backticks-codeblocks';

const result = processText('Some `inline code` and ```block code```');
console.log(result);

Input/Output Examples

The following table shows some example inputs and the corresponding output from the processText function:

Convert Block Code to Preformatted Text

  • Input:

    ```requiredDependency.mockImplementationOnce(() => {
    throw new Error('Test error');
    });```

  • Output:

    [{
      code: "requiredDependency.mockImplementationOnce(() => {
        throw new Error('Test error');
      });",
      isBlock: true
    }]

Convert Inline and Block Code Correctly

  • Input:

    Look at `this` code: ```requiredDependency.mockImplementationOnce(() => { throw new Error('Test error'); });```

  • Output:

      [
        'Look at ',
        { code: 'this', isBlock: false },
        ' code:\n    ',
        {
          code: `requiredDependency.mockImplementationOnce(() => {
          throw new Error('Test error');
        });`,
          isBlock: true,
        },
      ]

Handles Consecutive Code Blocks

  • Input:

    Check these snippets: ```code1``` then ```code2```

  • Output:

    [
      'Check these snippets: ',
      { code: 'code1', isBlock: true },
      ' then ',
      { code: 'code2', isBlock: true },
    ]

Handles Nested Backticks

  • Input:

    Here is an example `code with `nested` backticks` end

  • Output:

    [
      'Here is an example ',
      {
        code: 'code with ',
        isBlock: false,
      },
      'nested',
      {
        code: ' backticks',
        isBlock: false,
      },
      ' end',
    ]

Handles Interrupted Code Blocks

  • Input:

    Start ```incomplete code block

  • Output:

    [
      'Start ```incomplete code block'
    ]

Handles Mixed Backticks

  • Input:

    Inline `code` and ```block code``` mixed

  • Output:

    [
      'Inline ',
      { code: 'code', isBlock: false },
      ' and ',
      { code: 'block code', isBlock: true },
      ' mixed',
    ]

Handles Escaped Backticks

  • Input:

    This is not `code but \`escaped backticks\``

  • Output:

    [
      'This is not ', 
      { code: 'code but \`escaped backticks\`', isBlock: false }
    ]`

Handles Code Block at the Start

  • Input:

    ```code at start``` followed by text

  • Output:

    [
      { code: 'code at start', isBlock: true },
      ' followed by text',
    ]

Handles Code Block at the End

  • Input:

    Text followed by code at end

  • Output:

    [
      'Text followed by ',
      { code: 'code at end', isBlock: true },
    ]

Handles Empty Code Blocks

  • Input:

    Empty code blocks ``` ``` are weird

  • Output:

    ['Empty code blocks are weird']

Handles Adjacent Code Blocks

  • Input:

    No space between ```code1``````code2``` blocks

  • Output:

    [
      'No space between',
      { code: 'code1', isBlock: true },
      { code: 'code2', isBlock: true },
      'blocks'
    ]

Handles Unmatched Backticks Inside Code Blocks

  • Input: code with ` inside

  • Output:

    [
      { code: 'code with ` inside', isBlock: true }
    ]

Handles Code Blocks With New Lines

  • Input: `Multi-line ```\ncode block\n````

  • Output:

    [
      'Multi-line ', 
      { code: '\ncode block\n', isBlock: true }
    ]

Performance

The processText function works fairly fast and is capable of handling large texts within reasonable time frames.

License

This project is open-sourced software licensed under the MIT license.

psst, want some free Kanban app with chat for team of any size? https://rememo.io

Package Sidebar

Install

npm i backticks-codeblocks

Weekly Downloads

11

Version

1.0.5

License

MIT

Unpacked Size

2.34 MB

Total Files

31

Last publish

Collaborators

  • thousandsofraccoons