mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	do_cmd_moreargs(),
do_cmd_unspecified(): New functions to reflect previously unused markup. do_cmd_file(): Simplified generated markup to only make use of the existing stylesheet. do_cmd_makevar(): Make the markup more stylesheet-friendly.
This commit is contained in:
		
							parent
							
								
									c4a19e7fe9
								
							
						
					
					
						commit
						3d5a04ab18
					
				
					 1 changed files with 8 additions and 4 deletions
				
			
		|  | @ -122,7 +122,8 @@ sub do_cmd_optional{ | |||
| # \file and \samp are at the end of this file since they screw up fontlock. | ||||
| 
 | ||||
| sub do_cmd_pytype{ return @_[0]; } | ||||
| sub do_cmd_makevar{ return @_[0]; } | ||||
| sub do_cmd_makevar{ | ||||
|     return use_wrappers(@_[0], '<span class="makevar">', '</span>'); } | ||||
| sub do_cmd_code{ | ||||
|     return use_wrappers(@_[0], '<code>', '</code>'); } | ||||
| sub do_cmd_module{ | ||||
|  | @ -169,9 +170,7 @@ sub do_cmd_dfn{ | |||
| sub do_cmd_emph{ | ||||
|     return use_italics(@_); } | ||||
| sub do_cmd_file{ | ||||
|     return use_wrappers(@_[0], | ||||
|                         '<font class="file" face="sans-serif">', | ||||
|                         '</font>'); } | ||||
|     return use_wrappers(@_[0], '<span class="file">', '</span>'); } | ||||
| sub do_cmd_filenq{ | ||||
|     return do_cmd_file(@_[0]); } | ||||
| sub do_cmd_samp{ | ||||
|  | @ -185,6 +184,11 @@ sub do_cmd_textbf{ | |||
| sub do_cmd_textit{ | ||||
|     return use_wrappers(@_[0], '<i>', '</i>'); } | ||||
| 
 | ||||
| sub do_cmd_moreargs{ | ||||
|     return '...' . @_[0]; } | ||||
| sub do_cmd_unspecified{ | ||||
|     return '...' . @_[0]; } | ||||
| 
 | ||||
| 
 | ||||
| sub do_cmd_refmodule{ | ||||
|     # Insert the right magic to jump to the module definition. | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Fred Drake
						Fred Drake