Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newHR (0.02 sec)

  1. src/cmd/vendor/rsc.io/markdown/parse.go

    }
    
    func (c *rootBuilder) extend(p *parseState, s line) (line, bool) {
    	panic("root extend")
    }
    
    var news = []func(*parseState, line) (line, bool){
    	newQuote,
    	newATXHeading,
    	newSetextHeading,
    	newHR,
    	newListItem,
    	newHTML,
    	newFence,
    	newPre,
    }
    
    func (s *line) peek() byte {
    	if s.spaces > 0 {
    		return ' '
    	}
    	if s.i >= len(s.text) {
    		return 0
    	}
    	return s.text[s.i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top