2023-04-26 02:28:11 +00:00
|
|
|
% layout 'default';
|
|
|
|
% title 'About Post::Text';
|
2023-06-04 21:47:36 +00:00
|
|
|
% content_for open_graph => begin
|
|
|
|
<meta property="og:type" content="website">
|
|
|
|
<meta property="og:title" content="<%= title %>">
|
|
|
|
<meta
|
|
|
|
property="og:description"
|
2023-06-04 22:26:45 +00:00
|
|
|
content="Post::Text is a textboard a bit like 2channel. You can post whatever you want anonymously just please mind the rules."
|
2023-06-04 21:47:36 +00:00
|
|
|
>
|
|
|
|
% end
|
2023-05-20 03:50:44 +00:00
|
|
|
<h2 class="page-title"><%= title %></h2>
|
|
|
|
<main class="page-body">
|
2023-05-10 00:07:28 +00:00
|
|
|
<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">
|
2023-05-04 01:05:57 +00:00
|
|
|
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-26 02:28:11 +00: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>
|
2023-05-04 01:05:57 +00:00
|
|
|
<p>You can use an actual tab character or four spaces to indent.
|
2023-05-27 17:04:15 +00:00
|
|
|
Only Markdown as well as the HTML tags <code><br></code> and
|
|
|
|
<code><s></code> are supported. <strong>All other HTML will
|
|
|
|
be filtered out.</strong></p>
|
2023-05-10 00:07:28 +00:00
|
|
|
<p>There is a button for users to 'flag' a post for review by a
|
2023-04-26 02:28:11 +00: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
|
2023-05-27 04:54:49 +00:00
|
|
|
post your manifesto.</p>
|
2023-05-10 00:07:28 +00:00
|
|
|
</main>
|