Is there a special way of documenting a module and its functions?

When I document the module itself I am able to get full markdown formatting 
but when I move on to the functions it will do the title but the rest 
defaults to code formatting despite all of my efforts.

"# Test

`This` will work."
module Test
   "# This Title Works
   
   `The rest` here is shown literally."
   function x
      
   end
end


Reply via email to