Was this page helpful?

Google-spell

    Table of contents
    No headers
    google-spell: func [ check [string!]
    	/local req result suggestions
    ][
    	req: reform compose copy [ 
    		<spellrequest textalreadyclipped="0" ignoredups="1" ignoredigits="1" ignoreallcaps="0"> 
    		<text> (check)  </text> </spellrequest> 
    	]
    	result: load/markup read/custom https://www.google.com/tbproxy/spell reduce [ 'POST req ]
    	either parse result [ tag! tag! tag! set suggestions string! tag! tag! end ][
    		parse suggestions none
    	] [ none ]
    ]
    Was this page helpful?
    Tag page (Edit tags)
    • No tags
    You must login to post a comment.
    Powered by MindTouch Core