Hey All,
I’ve got a snippet I’m trying to write that should insert these lines into the current file:
%let out_folder = <<full path of the directory that the current file lives in>> ;
ods html path = "&out_folder" (URL=NONE)
body = "<<current file name minus extension>>.html"
So if I’m editing a file called \bibbity\bobbity\boo.sas I want to see
%let out_folder = \\bibbity\bobbity\ ;
ods html path = "&out_folder" (URL=NONE)
body = "boo.html"
Judging from the list of snippet env vars on this page, there aren’t any env vars that will suit these needs.
Is that right, or are there other vars not listed?
If it is right, can anyone tell me (or point me to docs explaining) how I can manipulate the values of these vars before they get inserted?
It’d also be lovely to get native windows backslashes as the path seperator character if that’s possible, though I can live w/the forwardslashes if need be.
Many thanks!
-Roy