Highlight Nouns and Noun PhrasesΒΆ

>>> from techminer2.database.field_operators import HighlightNounAndPhrasesOperator
>>> (
...     HighlightNounAndPhrasesOperator()  
...     #
...     # FIELDS:
...     .with_field("author_keywords")
...     .with_other_field("author_keywords_copy")
...     #
...     # DATABASE:
...     .where_root_directory_is("example/")
...     #
...     .run()
... )