Should be a simple question, but I'm a Rails novice and just kinda hacking this together. What's the format to add in a variable to this syntax? Pseudocode:
$var = '<html>' . $var2 . '</html>';
Except in ruby...
class PdfController < ApplicationController
def index
@html = %Q{
<html>
VARIABLE
</html>
}
end
end