Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for canOpen (0.07 sec)

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

    			for p.Text != "" {
    				// Looking for same symbol and compatible with p.Text.
    				for i := len(*stk) - 1; i >= 0; i-- {
    					start := (*stk)[i]
    					if (p.Text[0] == '*' || p.Text[0] == '_') && (p.canOpen && p.canClose || start.canOpen && start.canClose) && (p.n+start.n)%3 == 0 && (p.n%3 != 0 || start.n%3 != 0) {
    						continue
    					}
    					if p.Text[0] == '~' && len(p.Text) != len(start.Text) { // ~ matches ~, ~~ matches ~~
    						continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top