method

peek_probably_header?

Importance_0
v8.1.1 - Show latest stable - 0 notes - Class: Parser
peek_probably_header?() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File tools/rail_inspector/lib/rail_inspector/changelog.rb, line 168
        def peek_probably_header?
          return false unless @buffer.peek(1) == "*"

          maybe_header = @buffer.check_until(/\n/).strip

          # If there are an odd number of *, then the line is almost certainly a
          # header since bolding requires pairs.
          return true unless maybe_header.count("*").even?

          !maybe_header.end_with?("*")
        end
Register or log in to add new notes.