Tagged Questions
The rendering-plain-text tag has no wiki summary.
0
votes
3answers
276 views
How to display code in plain text?
What previous result you are
referencing:(Optional)
function getSize() { var myFSO = new
ActiveXObject("Scripting.FileSystemObject");
var filepath =
document.upload.file.value; var
thefile = ...
0
votes
1answer
619 views
Ruby-on-rails: rendering text and html within ruby tags only renders one line
I have the following code in a partial view file: "_status.html.erb"
<%=
if session[:user].nil?
"welcome new user"
link_to( 'Sign in', login_path)
else
render ( ...