# File lib/maruku/string_utils.rb, line 137 def num_leading_hashes(s) i=0; while i<(s.size-1) && (s[i,1]=='#'); i+=1 end i end