mmikeww / AHK-v2-script-converter

AHK v1 -> v2 script converter
https://autohotkey.com/boards/viewtopic.php?f=6&t=25100
The Unlicense
576 stars 43 forks source link

Double quote #272

Closed sebastieng-oss closed 3 months ago

sebastieng-oss commented 3 months ago

V1: MyVar := "FalseOrTrue(""T"")"

V2 (Converted): MyVar := "FalseOrTrue(""T"")"

V2 (Expected): MyVar := 'FalseOrTrue("T")'

At the beggining V1 is
Road := "=HYPERTEXT(""=https://www.mysite.com/Road="")"

Banaanae commented 3 months ago

This conversion is hard because it's in a function like syntax

I'll look at it soon

andymbody commented 3 months ago

@Banaanae... I fixed this and will submit a PR