Hi all,

This might be obvious for most of you, but since I just detected it, I thought to share it here: You can verify all the clickable commands in your (lengthy) help-file by putting the following four lines in your program's verification script:

Code:
import delimited using <file>.sthlp, clear
keep if strpos(v1,"{stata ")
gen command = regexs(1) if regexm(v1,`".+stata "(.+)""')
export delimited command using verify_help.do, novarnames delimiter(tab) replace 
do verify_help
This, of course, only works if the clickable Stata commands are written in one line. But that is something that is perhaps more often the case then it is not. Adaption to personal help-file writing styles should be possible, too.

Uli