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