Parsedown::extractElement( $Component )
Description
Source
File: bp-help/vendors/parsedown/Parsedown.php
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 | protected function extractElement( array $Component ) { if ( ! isset( $Component [ 'element' ])) { if (isset( $Component [ 'markup' ])) { $Component [ 'element' ] = array ( 'rawHtml' => $Component [ 'markup' ]); } elseif (isset( $Component [ 'hidden' ])) { $Component [ 'element' ] = array (); } } return $Component [ 'element' ]; } |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.