tofias dot net

log | a bucket full of thoughts

A List to LaTeX Itemized List

Seth wanted an AppleScript for BBEdit that would turn a list into a LaTeX Itemized List.


tell application "BBEdit"
remove prefix selection of project window 1 prefix "\item "
add prefix selection of project window 1 prefix "\item "
set selection to "\begin{itemize} \r" & selection & "\r\end{itemize}" as text
end tell