hello all - I have another issue - the 'Validate Syntax' command in the HTML bundle just returns a blank window.
here is the Ruby code from the command:
#!/usr/bin/env ruby -wKU
STDOUT.sync = true
page = STDIN.read
page.gsub!(/<\?(php|=).*?\?>|<%.*?%>/m, '')
io << page; io.close_write
while line = io.gets
line.gsub!(/Line (\d+),? Column (\d+)/i) do
"<a href='txmt://open?line=#$1&column=#{$2.to_i + 1}'>#$&</a>"
end
puts line
end
end
this should be the original code as I wouldn't have knowingly altered it (my Ruby being non-existent).
thanks,
bennett