Subject: | stopwords syntax error in pod causing pod parsing issues |
Hi,
You pod has:
=begin stopwords
Ogg
FLAC
... more
READONLY
Dongxu
=end stopwords
You need to make sure there's a blank line (no spaces either) before and after the pod directives:
=begin stopwords
Ogg
...
Dongxu
=end stopwords
Without this, some pod parsers can't parse it properly, and end up not seeing any of your doc.
For example, you can't see the doc via MetaCPAN.
Cheers,
Neil