File: /www/wwwroot/aiwellbore.com/wp-content/plugins/wp-githuber-md/src/Views/example/html5-figure.php
<?php
if ( ! defined('GITHUBER_PLUGIN_NAME') ) die;
/**
* View for Controller/Setting
*
* @author Terry Lin
* @link https://terryl.in/
*
* @package Githuber
* @since 1.2.0
* @version 1.3.0
*/
?>
<pre class="prettyprint setting-example">
<code class="language-markdown">
%[Alt text](http://yoururl.com/test.jpg "Figcaption text")
</code>
</pre>
<?php
echo __( 'The Markdown text above will be transformed to:', 'wp-githuber-md' );
?><br />
<pre class="prettyprint setting-example">
<code class="language-html">
<figure>
<img src="http://yoururl.com/test.jpg" alt="Alt text">
<figcaption>Figcaption text</figcaption>
</figure>
</code>
</pre>