diff --git a/content/en/blog/2022/instrument-apache-httpd-server/index.md b/content/en/blog/2022/instrument-apache-httpd-server/index.md index 090241ff8543..2dffb1d2b64d 100644 --- a/content/en/blog/2022/instrument-apache-httpd-server/index.md +++ b/content/en/blog/2022/instrument-apache-httpd-server/index.md @@ -2,9 +2,9 @@ title: Learn how to instrument Apache Http Server with OpenTelemetry linkTitle: Instrument Apache Http Server date: 2022-05-27 +author: '[Debajit Das](https://github.com/DebajitDas) (Cisco)' # prettier-ignore cSpell:ignore: Centos centos7 Debajit debuggability libmod uncompress webserver -author: '[Debajit Das](https://github.com/DebajitDas) (Cisco)' --- If you are using Apache HTTP Server and in dire need of some observability tool diff --git a/content/en/docs/instrumentation/python/distro.md b/content/en/docs/instrumentation/python/distro.md index dd4073d4d5b6..c79a9f6f9a41 100644 --- a/content/en/docs/instrumentation/python/distro.md +++ b/content/en/docs/instrumentation/python/distro.md @@ -1,8 +1,8 @@ --- -cSpell:ignore: configurator distro distros loglevel title: OpenTelemetry Distro linkTitle: Distro weight: 110 +cSpell:ignore: configurator distro distros loglevel --- In order to make using OpenTelemetry and auto-instrumentation as quick as diff --git a/scripts/normalize-cspell-front-matter.pl b/scripts/normalize-cspell-front-matter.pl index 7c814fc08e2f..16f5a8168c00 100755 --- a/scripts/normalize-cspell-front-matter.pl +++ b/scripts/normalize-cspell-front-matter.pl @@ -12,10 +12,10 @@ my %dictionary = getSiteWideDictWords('.vscode/cspell.json', '.textlintrc.yml'); while (<>) { - if (/^\s*(spelling: |-\s*)?cSpell:ignore:?(.*)$/ + if (/^\s*(spelling: |-\s*)?cSpell:ignore:?\s*(.*)$/ || (/^(\s+)(\S.*)$/ && @words) ) { - push @words, split ' ', $2; + push @words, split /[,\s]+/, $2; next; }