You appear to be a bot. Output may be restricted
Description
Format a markdown list started with a number
Usage
oikai_format_markdown_list_number( $list );
Parameters
- $list
- ( mixed ) required –
Returns
voidSource
File name: oik-shortcodes/shortcodes/oik-api-importer.phpLines:
1 to 7 of 7
function oikai_format_markdown_list_number( $list ) { if ( 0 === $list ) { stag( oikai_list_type( "ol" ) ); } $list++; return( $list ); }View on GitHub