diff --git a/boards/static/css/md/base_page.css b/boards/static/css/md/base_page.css --- a/boards/static/css/md/base_page.css +++ b/boards/static/css/md/base_page.css @@ -190,7 +190,6 @@ blockquote { .quote { color: #92cf38; - padding-left: 5px; } .spoiler { diff --git a/boards/templates/boards/thread.html b/boards/templates/boards/thread.html --- a/boards/templates/boards/thread.html +++ b/boards/templates/boards/thread.html @@ -94,8 +94,9 @@
{% trans 'Example: ' %}*{% trans 'italic' %}*, **{% trans 'bold' %}**
{% trans 'Quotes can be inserted with' %} ">"
-
{% trans 'Links to answers can be inserted with' %} ">> - 123"
+
{% trans 'Links to answers can be inserted with' %} + ">>123" +
diff --git a/boards/urls.py b/boards/urls.py --- a/boards/urls.py +++ b/boards/urls.py @@ -27,6 +27,8 @@ urlpatterns = patterns('', # RSS feeds url(r'^rss/$', AllThreadsFeed()), + url(r'^page/(?P\w+)/rss/$', AllThreadsFeed()), url(r'^tag/(?P\w+)/rss/$', TagThreadsFeed()), + url(r'^tag/(?P\w+)/page/(?P\w+)/rss/$', TagThreadsFeed()), url(r'^thread/(?P\w+)/rss/$', ThreadPostsFeed()), ) \ No newline at end of file