Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for emitText (0.19 sec)

  1. pkg/collateral/control.go

    		return
    	}
    
    	if cmd.HasParent() {
    		g.emit("<h2 id=\"", normalizeID(cmd.CommandPath()), "\">", cmd.CommandPath(), "</h2>")
    	}
    
    	if cmd.Long != "" {
    		g.emitText(cmd.Long)
    	} else if cmd.Short != "" {
    		g.emitText(cmd.Short)
    	}
    
    	if cmd.Runnable() {
    		g.emit("<pre class=\"language-bash\"><code>", html.EscapeString(cmd.UseLine()))
    		g.emit("</code></pre>")
    
    		if len(cmd.Aliases) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top