Skip to content

Instantly share code, notes, and snippets.

@0x4a
Created April 3, 2018 21:44
Show Gist options
  • Save 0x4a/2127ba61939f504d3ebd7c28292162d6 to your computer and use it in GitHub Desktop.
Save 0x4a/2127ba61939f504d3ebd7c28292162d6 to your computer and use it in GitHub Desktop.
wrap clipboard in html tags
; only apply to editor window (Notepad2-mod)
#ifWinActive ahk_class Notepad2U
{
$^+b::htmlBold() ; STRG + Shift + B
}
htmlBold()
{
oldClip := ClipboardAll
Send ^x
clipboard:="<strong>" clipboard "</strong>"
Send ^v
clipboard:=oldClip
oldClip:=""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment