{% extends "base.html" %} {% block title -%} eBook Generator {% endblock title %} {% block content %}

To specify eBook:

  • List search terms for article titles inside ()
  • List search terms for article tags inside []
  • List search terms for article body inside {}
  • Separate list items inside any bracket type with &
  • Separate brackets with ~
  • Nesting brackets is permissible, terms will be ordered in title -> tag -> body order
  • Reqular expressions are permissible
  • Example: ({sushi&steak})~{whiskey}~([chili&beans])

    Will assemble an eBook with all articles with 'sushi' or 'steak' in the title, followed by all articles with 'sushi' or 'steak' in the body, followed by all articles with 'whisky' in the title, followed by all articles with 'chili' or 'beans' as a tag, followed by all articles with 'chili' or 'beans' in the body.

    Example: (.*)

    Will use the .* wildcard to match all article titles and assemble and eBook from the entire wiki.

    eBook Specifier:
    {{ form.hidden_tag() }} {{ input(form.value, placeholder="{*}", class="span7", autocomplete="off") }}
    {% endblock content%}