TagBlock typedef

Array of lines that represent individual Tags.

Array<String>

About TagBlock

A TagBlock comes from a text block made up of Tags, typically from a FileSource:

@tag1 ...
@tag2 ...
...
...
@tag3 ...

A text block like this is converted into a TagBlock by bit-docs-process-tags/process-tags:

[
  '@tag1 ...',
  '@tag2 ...',
  '...',
  '...',
  '@tag3 ...'
]

Use

Parameter type for ProcessTagsOptions.

bit-docs-process-tags/process-tags processes a TagBlock and finds lines that start with @.

TagBlock will come from the entire FileSource for .md files that can have various Tags mixed in with Markdown.