Skip to content

Instantly share code, notes, and snippets.

@JoeGlines
Last active April 26, 2021 15:30
Show Gist options
  • Save JoeGlines/d2ee299fc4cf1e0020676c893ccdff5a to your computer and use it in GitHub Desktop.
Save JoeGlines/d2ee299fc4cf1e0020676c893ccdff5a to your computer and use it in GitHub Desktop.
;*******************************************************
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY
; Right now you can get a coupon code here: https://the-Automator.com/Learn
;*******************************************************
gosub Store_Clipboard_Copy_Selected_Text
;http://ahkscript.org/docs/commands/Transform.htm http://www.w3schools.com/charsets/ref_html_8859.asp
Transform,Clipboard,html,%Clipboard%,3 ;3=numbered expressions used where named expression not available
Clipboard:= RegExReplace(Clipboard, "mUs)•\s(.*).<br>", " <li>$1</li>") ;convert bullet & br to ul
Clipboard:= RegExReplace(Clipboard, " <li>(.*)</li>", " <ul>`r`n <li>$1</li>`r`n </ul>") ;convert bullet & br to ul
Clipboard:= RegExReplace(Clipboard, "mUs).<br>", "<br>") ;convert bullet & br to ul
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment