The standard Tag importer supports reading tags from comments in a wide array of source code files.
Sadly, it is currently not possible to read Tags from TOML files, which are quite commonly used for holding configuration data.
TOML also uses the # character to mark a line as a comment line. It should therefore be very easy to add support for TOML files because all that would need to be done is add toml to the standard Tag importer's list of supported file extensions.
The standard Tag importer supports reading tags from comments in a wide array of source code files.
Sadly, it is currently not possible to read Tags from TOML files, which are quite commonly used for holding configuration data.
TOML also uses the
#character to mark a line as a comment line. It should therefore be very easy to add support for TOML files because all that would need to be done is addtomlto the standard Tag importer's list of supported file extensions.