本文整理汇总了PHP中Gdn_Format::Markdown方法的典型用法代码示例。如果您正苦于以下问题:PHP Gdn_Format::Markdown方法的具体用法?PHP Gdn_Format::Markdown怎么用?PHP Gdn_Format::Markdown使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Gdn_Format
的用法示例。
在下文中一共展示了Gdn_Format::Markdown方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: t
<?php
if (!defined('APPLICATION')) {
exit;
}
?>
<h1><?php
echo t('TermsOfService');
?>
</h1>
<div class="Legal">
<?php
echo Gdn_Format::Markdown(t('TermsOfServiceText'));
?>
</div>
示例2: T
<?php
if (!defined('APPLICATION')) {
exit;
}
?>
<div class="SplashInfo">
<div class="Center">
<h1><?php
echo $this->Data('Title', T('Whoops!'));
?>
</h1>
<div id="Message">
<?php
echo Gdn_Format::Markdown($this->Data('Exception', 'Add your message here foo.'));
?>
</div>
</div>
<?php
if (Debug() && $this->Data('Trace')) {
?>
<h2>Error</h2>
<?php
echo $this->Data('Code') . ' ' . htmlspecialchars(Gdn_Controller::GetStatusMessage($this->Data('Code')));
?>
<h2>Trace</h2>
<pre stye="text-align"><?php
echo htmlspecialchars($this->Data('Trace'));
?>
</pre>
<?php
示例3: t
bottom: 5px;
left: 250px;
}
</style>
<h2 class="H"><?php
echo $this->data('Title');
?>
</h2>
<div class="Hero">
<h3><?php
echo t("What's This?");
?>
</h3>
<p>
<?php
echo Gdn_Format::Markdown(t('Connect your profile to social networks.', "Connect your profile to social networks to be notified of activity here and share your activity with your friends and followers."));
?>
</p>
</div>
<ul class="DataList DataList-Connections">
<?php
foreach ($this->data('Connections') as $Key => $Row) {
WriteConnection($Row);
}
?>
</ul>