4

Could you please tell me the writing conventions to use on runsubmit ? To answer or ask questions it is not always possible to write special characters (like the underscore), I've got also some time parts of SAS code which doesn't appear.

Kind Regards
Toloc

flag

1 Answer

3

Have you had a look at the Markdown Editing Help?

Maybe code spans with backticks can help you:

 `My_Cool_Underscore_Variable_Name` 

becomes: My_Cool_Underscore_Variable_Name

Code sections are made by inserting 4 (four) spaces in front of each code line:

data WORK.My_Cool_SAS_Data;
  set SASHELP.CLASS;
run;

PS. I had a lot of trouble writing the backtick character: The preview and final result actually differ...

link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.