1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
|
======================================================================
Other changes
======================================================================
:Maintainer: Masatake YAMATO <yamato@redhat.com>
.. contents:: `Table of contents`
:depth: 3
:local:
----
Many changes have been introduced in Universal Ctags. Use git-log to
review changes not enumerated here, especially in language parsers.
New and extended options
---------------------------------------------------------------------
``--exclude-exception``, an option complementing ``--exclude``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
See :ref:`option_input_output_file` in :ref:`ctags(1) <ctags(1)>`.
``--maxdepth`` option
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
See :ref:`option_input_output_file` in :ref:`ctags(1) <ctags(1)>`.
``--input-encoding=ENCODING`` and ``--output-encoding=ENCODING``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. TODO: Review...
People may use their own native language in source code comments (or
sometimes in identifiers) and in such cases encoding may become an issue.
Nowadays UTF-8 is the most widely used encoding, but some source codes
still use legacy encodings like latin1, cp932 and so on. These options
are useful for such files.
ctags doesn't consider the input encoding; it just reads input as a
sequence of bytes and uses them as is when writing tags entries.
On the other hand Vim does consider input encoding. When loading a
file, Vim converts the file contents into an internal format with one
of the encodings specified in its `fileencodings` option.
As a result of this difference, Vim cannot always move the cursor to
the definition of a tag as users expect when attempting to match the
patterns in a tags file.
The good news is that there is a way to notify Vim of the encoding
used in a tags file with the ``TAG_FILE_ENCODING`` pseudo-tag.
Two new options have been introduced (``--input-encoding=IN`` and
``--output-encoding=OUT``).
Using the encoding specified with these options ctags converts input
from ``IN`` to ``OUT``. ctags uses the converted strings when writing
the pattern parts of each tag line. As a result the tags output is
encoded in ``OUT`` encoding.
In addition ``OUT`` is specified at the top the tags file as the
value for the ``TAG_FILE_ENCODING`` pseudo-tag. The default value of
``OUT`` is UTF-8.
NOTE: Converted input is NOT passed to language parsers.
The parsers still deal with input as a byte sequence.
With ``--input-encoding-<LANG>=IN``, you can specify a specific input
encoding for ``LANG``. It overrides the global default value given
with ``--input-encoding``.
The example usage can be found in *Tmain/{input,output}-encoding-option.d*.
Acceptable ``IN`` and ``OUT`` values can be listed with *iconv -l* or
*iconv --list*. It is platform dependant.
To enable the option, libiconv is needed on your platform.
On Windows mingw (without msys2), you must specify ``WITH_ICONV=yes``
like this::
C:\dev\ctags>mingw32-make -f mk_mingw.mak WITH_ICONV=yes
``--list-features`` helps you to know whether your ctags executable
links to libiconv or not. You will find ``iconv`` in the output if it
links to.
See also :ref:`option_output_format` in :ref:`ctags(1) <ctags(1)>`.
``--map-<LANG>`` option
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. IN MAN PAGE
``--map-<LANG>`` is newly introduced to control the file name
to language mappings (langmap) with finer granularity than
``--langmap`` allows.
A langmap entry is defined as a pair; the name of the language and a
file name extension (or pattern).
Here we use "spec" as a generic term representing both file name
extensions and patterns.
``--langmap`` maps specs to languages exclusively::
$ ctags --langdef=FOO --langmap=FOO:+.ABC \
--langdef=BAR --langmap=BAR:+.ABC \
--list-maps | grep '\*.ABC$'
BAR *.ABC
Though language `FOO` is added before `BAR`, only `BAR` is set as a
handler for the spec `*.ABC`.
Universal Ctags enables multiple parsers to be configured for a spec.
The appropriate parser for a given input file can then be chosen by a
variety of internal guessing strategies (see :ref:`Determining file language
<guessing>`).
Let's see how specs can be mapped non-exclusively with
``--map-<LANG>``::
$ ctags --langdef=FOO --map-FOO=+.ABC \
--langdef=BAR --map-BAR=+.ABC \
--list-maps | grep '\*.ABC$'
FOO *.ABC
BAR *.ABC
Both `FOO` and `BAR` are registered as handlers for the spec `*.ABC`.
``--map-<LANG>`` can also be used for removing a langmap entry.::
$ ctags --langdef=FOO --map-FOO=+.ABC \
--langdef=BAR --map-BAR=+.ABC \
--map-FOO=-.ABC --list-maps | grep '\*.ABC$'
BAR *.ABC
$ ctags --langdef=FOO --map-FOO=+.ABC \
--langdef=BAR --map-BAR=+.ABC \
--map-BAR=-.ABC --list-maps | grep '\*.ABC$'
FOO *.ABC
$ ctags --langdef=FOO --map-FOO=+.ABC \
--langdef=BAR --map-BAR=+.ABC \
--map-BAR=-.ABC --map-FOO=-.ABC --list-maps | grep '\*.ABC$'
(NOTHING)
``--langmap`` provides a way to manipulate the langmap in a
spec-centric manner and ``--map-<LANG>`` provides a way to manipulate
the langmap in a parser-centric manner.
See also :ref:`option_lang_mapping` in :ref:`ctags(1) <ctags(1)>`.
Guessing parser from file contents (``-G`` option)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
See :ref:`guessing` in :ref:`ctags(1) <ctags(1)>`.
Including line number to pattern field
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Use ``--excmd=number``.
See :ref:`option_tags_file_contents` in :ref:`ctags(1) <ctags(1)>`.
Long names in kinds, fields, and extra options
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
A letter is used for specifying a kind, a field, or an extra entry.
In Universal Ctags a name can also be used.
Surround the name with braces (`{` and `}`) in values assigned to the
options, ``--kind-<LANG>=``, ``--fields=``, or ``--extras=``.
.. code-block:: console
$ ctags --kinds-C=+L-d ...
This command line uses the letters, `L` for enabling the label kind
and `d` for disabling the macro kind of C. The command line can be
rewritten with the associated names.
.. code-block:: console
$ ctags --kinds-C='+{label}-{macro}' ...
The quotes are needed because braces are interpreted as meta
characters by the shell.
The available names can be listed with ``--list-kinds-full``,
``--list-fields``, or ``--list-extras``.
See also :ref:`option_tags_file_contents` in :ref:`ctags(1) <ctags(1)>`.
Wildcard in options
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
For the purpose of gathering as much as information as possible from
source code the "wildcard"(``*``) option value has been introduced.
``--extras=*``
Enables all extra tags.
``--fields=*``
Enables all available fields.
``--kinds-<LANG>=*``
Enables all available kinds for ``LANG``.
``--kinds-all=*``
Enables all available kinds for all available language parsers.
See also :ref:`option_tags_file_contents` in :ref:`ctags(1) <ctags(1)>`.
Extra tag entries (``--extras``)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
``--extra`` option in Exuberant Ctags is renamed to ``--extras`` (plural) in
Universal Ctags for making consistent with ``--kinds-<LANG>`` and ``--fields``.
These extra tag entries are newly introduced.
``F``
Replacement for --file-scope.
``p``
Include pseudo-tags.
..
NOT REVIEWED YET
See also :ref:`option_tags_file_contents` in :ref:`ctags(1) <ctags(1)>`.
Kinds synchronization
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
See the description about ``--kinds-<LANG>`` and ``--list-kinds-full``
option on :ref:`option_tags_file_contents` in :ref:`ctags(1) <ctags(1)>`.
Enabling/disabling pseudo-tags (``--pseudo-tags`` option)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. IN MAN PAGE
See :ref:`option_tags_file_contents` in :ref:`ctags(1) <ctags(1)>` and
:ref:`ctags-client-tools(7) <ctags-client-tools(7)>` about the option.
``--put-field-prefix`` options
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
See :ref:`option_tags_file_contents` in :ref:`ctags(1) <ctags(1)>`.
"always" and "never" as an argument for ``--tag-relative``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
``--tag-relative`` option is extend.
See :ref:`option_tags_file_contents` in :ref:`ctags(1) <ctags(1)>`.
Defining a parser specific extra
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
A new ``--_extradef-<LANG>=name,description`` option allows you to
defining a parser specific extra which turning on and off can be
referred from a regex based parser for ``<LANG>``.
See :ref:`Conditional tagging with extras <extras>` for more details.
Defining a CPreProcessor macro from command line
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Newly introduced ``-D`` option extends the function provided by
``-I`` option.
``-D`` emulates the behaviour of the corresponding gcc option:
it defines a C preprocessor macro.
See :ref:`option_tags_file_contents` in :ref:`ctags(1) <ctags(1)>` and
:ref:`cxx` for more details.
Options for inspecting ctags internals
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Exuberant Ctags provides a way to inspect its internals via
``--list-kinds``, ``--list-languages``, and ``--list-maps``.
This idea has been expanded in Universal Ctags with
``--list-kinds-full``, ``--list-map-extensions``, ``--list-extras``,
``--list-features``, ``--list-fields``, ``--list-map-patterns``, and
``--list-pseudo-tags`` being added.
The original three ``--list-`` options are not changed for
compatibility reasons, however, the newly introduced options are
recommended for all future use.
By default, interactive use is assumed and ctags tries aligning the
list output in columns for easier reading.
When ``--machinable`` is given before a ``--list-`` option, ctags
outputs the list in a format more suitable for processing by scripts.
Tab characters are used as separators between columns. The alignment
of columns is never considered when ``--machinable`` is given.
Currently only ``--list-extras``, ``--list-fields`` and
``--list-kinds-full`` support ``--machinable`` output.
These new ``--list-`` options also print a column header, a line
representing the name of each column. The header may help users and
scripts to understand and recognize the columns. Ignoring the column
header is easy because it starts with a `#` character.
``--with-list-header=no`` suppresses output of the column header.
See also :ref:`option_listing` in :ref:`ctags(1) <ctags(1)>`.
Notice messages and ``--quiet``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
There were 3 classes of message in Exuberant Ctags.
In addition to them Universal Ctags introduced a new class of message, *notice*.
*fatal*
A critical error has occurred and ctags aborts the execution.
*warning*
An error has occurred but ctags continues the execution.
*notice* (new)
It is less important than *warning* but more important for users than *verbose*.
*verbose*
Mainly used for debugging purposes.
Generally the user can ignore *notice* class messages and ``--quiet``
can be used to disable them.
*verbose* class messages are disabled by default, and ``--verbose`` or ``-V``
can be used to enable them.
See also :ref:`option_misc` in :ref:`ctags(1) <ctags(1)>`.
Skipping utf-8 BOM
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The three bytes sequence(``\xEF\xBB\xBF``) at the head of an input
file is skipped when parsing.
TODO:
* Do the same in guessing and selecting parser stage.
* Refect the BOM detection to encoding option
Interactive mode
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
A new ``--_interactive`` option launches a JSON based command REPL which
can be used to control ctags generation programmatically.
See :ref:`interactive-mode` for more details.
PCRE2 regular expression
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
With ``{pcre2}`` (or ``p``) flag, PCRE2 expressions can be used in
``--regex-<LANG>=``, ``--mline-regex-<LANG>=``, and
``--_mtable-regex-<LANG>=`` if the ctags is built with ``pcre2`` library.
Incompatible changes in command line
---------------------------------------------------------------------
.. NOT REVIEWED YET
``-D`` option
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
For a ctags binary that had debugging output enabled in the build config
stage, ``-D`` was used for specifying the level of debugging
output. It is changed to ``-d``. This change is not critical because
``-D`` option was not described in ctags.1 man page.
Instead ``-D`` is used for defining a macro in CPreProcessor parser.
Changes imported from Exuberant Ctags
---------------------------------------------------------------------
See "Exuberant Ctags" in "Tracking other projects" for detailed
information regarding imported changes.
Some changes have also been imported from Fedora and Debian.
Parser related changes
---------------------------------------------------------------------
New parsers
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The following parsers have been added:
* Abaqus
* Abc
* Ada
* AnsiblePlaybook *libyaml*
* Asciidoc
* Autoconf
* Automake
* AutoIt
* BibTeX
* Clojure
* CMake *optlib*
* CSS
* Ctags option library *optlib*
* CUDA
* D
* DBusIntrospect *libxml*
* Diff
* Dots *Sh based subparser*
* DTD
* DTS
* Elixir *optlib*
* Elm *peg/packcc*
* Falcon
* FrontMatter *only YAML syntax, running as a guest on R?Markdown*
* FunctionParameters *perl based subparser*
* Gdbinit script *optlib*
* GemSpec *Ruby based subparser*
* GDScript
* Glade *libxml*
* Go
* GPerf *optlib*
* Haskell
* Haxe
* iPythonCell *optlib*, *pthon based subparser*
* Inko *optlib*
* JavaProperties
* JSON
* Julia
* Kconfig *optlib*
* Kotlin *peg/packcc*
* GNU linker script(LdScript)
* LEX *optlib*
* Man page *optlib*
* Markdown
* Maven2 *libxml*
* MesonBuild (Meson) *optlib*
* MesonOptions *optlib+script*
* Moose *perl based subparser*
* Myrddin
* M4
* NSIS
* ObjectiveC
* Org *optlib*
* OpenAPI (3.x.x / Swagger 2.0) *Yaml based subparser*
* Passwd *optlib*
* PuppetManifest *optlib*
* Perl6
* Pod *optlib*
* PowerShell
* PropertyList(plist) *libxml*
* Protobuf
* PythonLoggingConfig
* QemuHX *optlib*
* QtMoc
* R
* R6Class *R based subparser*
* Rake *Ruby based subparser*
* RDoc *optlib pcre2*
* RelaxNG *libxml*
* ReStructuredText
* RMarkdown *Markdown based subparser*
* Robot
* RpmMacros *optlib*
* RpmSpec
* RSpec *Ruby based subparser*
* Rust
* S4Class *R based subparser*
* SCSS *optlib*
* SystemdUnit
* SystemTap *optlib*
* SystemVerilog
* SVG *libxml*
* TclOO (see :ref:`The new Tcl parser <tcl>`)
* Thrift *peg/packcc*
* TTCN
* Txt2tags
* TypeScript
* Varlink *peg/packcc*
* WindRes
* XSLT v1.0 *libxml*
* Yacc
* Yaml *libyaml*
* YumRepo
* Zephir
* Zsh
See :ref:`optlib` for details on *optlib*.
Libxml2 is required to use the parser(s) marked with *libxml*.
Libyaml is required to use the parser(s) marked with *libyaml*.
pcre2 is required to use the parser(s) marked with *pcre2*.
TIPS: you can list newly introduced parsers if you also have
Exuberant Ctags installed with following command line:
.. code-block:: console
$ diff -ruN <(universal-ctags --list-languages) <(exuberant-ctags --list-languages) | grep '^[-+]'
Fully improved parsers
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* C (see :ref:`The new C/C++ parser <cxx>`)
* C++ (see :ref:`The new C/C++ parser <cxx>`)
* Python (see :ref:`The new Python parser <python>`)
* HTML (see :ref:`The new HTML parser <html>`)
* Tcl (see :ref:`The new Tcl parser <tcl>`)
* ITcl (see :ref:`The new Tcl parser <tcl>`)
* Ant (rewritten with *libxml*)
* PHP
* Verilog/SystemVerilog
Automatically expanding CPreProcessor macros defined in the same input file (HIGHLY EXPERIMENTAL)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
See :ref:`The new C/C++ parser <cxx>` for more details.
Readtags
---------------------------------------------------------------------
Printing line numbers with ``-n``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
See :ref:`readtags(1) <readtags(1)>`.
Filtering in readtags command
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
See :ref:`readtags(1) <readtags(1)>`.
readtags has ability to find tag entries by name.
The concept of filtering is inspired by the display filter of
Wireshark. You can specify more complex conditions for searching.
All symbols starting with `$` represent a field of a tag entry which
is being tested against the S expression. Most will evaluate as a
string or `#f`. It evaluates to `#f` when the field doesn't exist.
The `scope` field holds structured data: the kind and name of the
upper scope combined with `:`. The hold the value is stored to
`$scope`. The kind part is mapped to `$scope-kind`, and the name part
to `$scope-name`.
`$scope-kind` and `$scope-name` can only be used if the input tags
file is generated by ctags with ``--fields=+Z``.
`$` is a generic accessor for accessing extension fields.
`$` takes one argument: the name of an extension field.
It returns the value of the field as a string if a value
is given, or `#f`.
Following examples shows how `prefix?`, `suffix?`, and
`substr?` work.
::
(prefix? "TARGET" "TA")
=> #t
(prefix? "TARGET" "RGET")
=> #f
(prefix? "TARGET" "RGE")
=> #f
(suffix? "TARGET" "TA")
=> #f
(suffix? "TARGET" "RGET")
=> #t
(suffix? "TARGET" "RGE")
=> #f
(substr? "TARGET" "TA")
=> #t
(suffix? "TARGET" "RGET")
=> #t
(suffix? "TARGET" "RGE")
=> #t
(and (suffix? "TARGET" "TARGET")
(prefix? "TARGET" "TARGET")
(substr? "TARGET" "TARGET")
=> #t
Sorting in readtags command
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
readtags can sort the tag entries before printing.
You can specify the way to sort with -S option. Like ``-Q`` option, ``-S``
also takes an S expression.
See :ref:`readtags(1) <readtags(1)>`.
Listing pseudo tags with ``-D``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
See :ref:`readtags(1) <readtags(1)>`.
|