6 lines
144 B
Ruby
6 lines
144 B
Ruby
class DtextController < ApplicationController
|
|
def preview
|
|
render :inline => "<h1>Preview</h1><%= format_text(params[:body]) %>"
|
|
end
|
|
end
|