Applescript syntax highlight support

I often use AppleScript to do some automator works and use markdown to note these. Is there any plan to support AppleScript? Like this code (can’t be highlighted here but Github has supported this):

display alert "Hello, world!" buttons {"Rudely decline", "Happily accept"}
set theAnswer to button returned of the result
if theAnswer is "Happily accept" then
	beep 5
else
	say "Piffle!"
end if

Thanks a lot.

No plans, no. The way forward for stuff like this is usually to build the language package yourself.

Thanks for your reply. I see.