Skip to content

Commit

Permalink
Doc: fix indentation in programlisting blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
dregad committed Apr 18, 2019
1 parent 4714c1a commit 981993e
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions docbook/Developers_Guide/en-US/Events_Reference_Output.xml
Expand Up @@ -256,21 +256,21 @@ array( '<a href="' . plugin_page( 'mypage' ) . '">' . plugin_lang_get( 'mypag
'access_level', and 'icon' (e.g. fa-pencil from <ulink url="http://fontawesome.io/icons/">Font Awesome</ulink>).
</para>
<programlisting>
return array(
array(
'title' =&gt; 'My Link',
'access_level' =&gt; DEVELOPER,
'url' =&gt; 'my_link.php',
'icon' =&gt; 'fa-random'
),
array(
'title' =&gt; 'My Link2',
'access_level' =&gt; DEVELOPER,
'url' =&gt; 'my_link2.php',
'icon' =&gt; 'fa-shield'
)
);
</programlisting>
return array(
array(
'title' =&gt; 'My Link',
'access_level' =&gt; DEVELOPER,
'url' =&gt; 'my_link.php',
'icon' =&gt; 'fa-random'
),
array(
'title' =&gt; 'My Link2',
'access_level' =&gt; DEVELOPER,
'url' =&gt; 'my_link2.php',
'icon' =&gt; 'fa-shield'
)
);
</programlisting>
</listitem>
</itemizedlist>
</blockquote>
Expand All @@ -292,21 +292,21 @@ array( '&lt;a href="' . plugin_page( 'mypage' ) . '">' . plugin_lang_get( 'mypag
'access_level', and 'icon' (e.g. fa-pencil from <ulink url="http://fontawesome.io/icons/">Font Awesome</ulink>).
</para>
<programlisting>
return array(
array(
'title' =&gt; 'My Link',
'access_level' =&gt; DEVELOPER,
'url' =&gt; 'my_link.php',
'icon' =&gt; 'fa-random'
),
array(
'title' =&gt; 'My Link2',
'access_level' =&gt; DEVELOPER,
'url' =&gt; 'my_link2.php',
'icon' =&gt; 'fa-shield'
)
);
</programlisting>
return array(
array(
'title' =&gt; 'My Link',
'access_level' =&gt; DEVELOPER,
'url' =&gt; 'my_link.php',
'icon' =&gt; 'fa-random'
),
array(
'title' =&gt; 'My Link2',
'access_level' =&gt; DEVELOPER,
'url' =&gt; 'my_link2.php',
'icon' =&gt; 'fa-shield'
)
);
</programlisting>
</listitem>
</itemizedlist>
</blockquote>
Expand Down

0 comments on commit 981993e

Please sign in to comment.