PostText/templates/page/about.html.ep

42 lines
1.6 KiB
Plaintext
Raw Normal View History

2023-04-25 22:28:11 -04:00
% layout 'default';
% title 'About Post::Text';
<h2><%= title %></h2>
<main class="about body">
<p>Post::Text is a
<a href="https://en.wikipedia.org/wiki/Textboard">textboard</a>
a bit like 2channel. You can post whatever you want anonymously
just please mind the <%= link_to rules => 'rules_page' %>.
Markdown is supported for formatting posts using the
<a href="https://daringfireball.net/projects/markdown/syntax">
original implementation from The Daring Fireball</a>. For example,
back-ticks are for <em>inline code</em> while indentation should
be used if you want an entire code bock:</p>
2023-04-25 22:28:11 -04:00
<pre><code>
This is `inline_code()` and so is ```this()```. This is incorrect:
```
if (true) {
do_stuff();
}
```
This is correct for a multi-line code block:
if (true) {
do_stuff();
}
</code></pre>
<p>You can use an actual tab character or four spaces to indent.
<strong>Only Markdown is supported, HTML will be filtered
out.</strong></p>
<p>There is a button for users to 'flag' a post for review by a
2023-04-25 22:28:11 -04:00
moderator. If you need further assistance you can reach out to the
<a href="mailto:swaggboi@slackware.uk">webmaster</a>. There is
also a 'bump' button you're free to use and abuse to your heart's
content. If you're already using a feed reader or some sort of
email client you can check out the
<%= link_to 'RSS feed', threads_feed => {format => 'rss'} %>.</p>
<p>Click 'New' in the top navigation bar to start a new thread and
make some <del>enemies</del> <ins>friends</ins>!</p>
</main>