regex hashtags not converted to links [duplicate]

I want o find all hashtags that are not converted to links.

This pattern finds the hashtags converted to links but I want to find the not converted ones:

("|>)#w+

should match:

the brown #fox jumps over #the lazy #dog

should not match:

the brown <a href="#fox">#fox</a> jumps over <a href="#the">#the</a> lazy <a href="#dog">#dog</a>

https://regex101.com/r/OiJZCI/1