educoder/app/controllers/mark_down_controller.rb

15 lines
129 B
Ruby

class MarkDownController < ApplicationController
layout "base_md"
def new
end
def create
end
def show
end
end