Metadata-Version: 2.0
Name: anchorhub
Version: 0.14
Summary: Easily utilize GitHub's automatically generated anchors within and across Markdown documents
Home-page: https://github.com/samjabrahams/anchorhub
Author: Sam Abrahams
Author-email: sam@samabrahams.com
License: Apache 2.0
Keywords: markdown anchor links processing
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Pre-processors
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: nose

AnchorHub
=========

**AnchorHub** is a command-line tool that makes it easy and intuitive to
utilize GitHub's auto-generated anchor tags in your
`Markdown <https://daringfireball.net/projects/markdown/>`__ documents,
allowing you to create rich, user-friendly documentation in your GitHub
repos without having to figure out what those auto-generated tags will
be.

Features
--------

-  Easily use GitHub's automatically generated anchor tags
-  Simple, customizable syntax that just works
-  Works with single files, a single directory level, or an entire
   directory tree

Installation
------------

You can install AnchorHub using
`pip <https://pip.pypa.io/en/stable/installing/>`__:

::

    $ pip install anchorhub

If you're having trouble with pip, you can also install from source:

::

    $ git clone https://github.com/samjabrahams/anchorhub.git
    $ cd anchorhub
    $ python setup.py install

To-do List
----------

-  Verify cross-platform compatibility (currently only tested on OSX)
-  Support for ReStructuredText
-  Define API for using custom anchor generation or
-  More tests!

Known Issues
------------

-  Should not change text within in-line code blocks (those marked by \`
   backticks)

--------------

Quick Start Guide
=================

1. Define your tags
-------------------

Inside your Markdown files, define tags at the end of header lines. By
default, the syntax for this is ``{#my-tag-here}``:

::

    # This is a header that I would like to make a tag for {#tag}

    You can also use Setext (underlined) style headers {#setext}
    ------------------------------------------------------------

The default is similar to `Pandoc's Markdown header
identifiers <http://pandoc.org/README.html#header-identifiers>`__

2. Use the tags as you would regular HTML anchors
-------------------------------------------------

Elsewhere, you can use the previously defined tags inlinks to provide a
direct path to the header:

::

    [This links back to the header using the AnchorHub tag 'tag'](#tag)

    [This one links to the Setext header](#setext)

3. Run AnchorHub on your Markdown files
---------------------------------------

``anchorhub`` will parse your Markdown files. You've got a few options
for running ``anchorhub``: run it on a single file, run it on a single
level of a directory, or run it on an entire directory tree.

::

    Single file use:
    $ anchorhub mytags.md

    Directory use (single level):
    $ anchorhub .

    Directory use (provided directory level and all subdirectories):
    $ anchorhub . -r

This will output your processed files in a new folder in your current
directory, 'anchorhub-out/'

4. Enjoy your (relatively) hassle-free GitHub anchor links
----------------------------------------------------------

Assuming all of the above Markdown was in a file named 'mytags.md', here
is what we'd find inside of 'anchorhub-out/mytags.md':

::

    # This is a header that I would like to make a tag for

    You can also use Setext (underlined) style headers
    ------------------------------------------------------------
    ...
    [This links back to the header using the AnchorHub tag 'tag'](#this-is-a-header-that-i-would-like-to-make-a-tag-for)

    [This one links to the Setext header](#you-can-also-use-setext-underlined-style-headers)

--------------

License
=======

::

    Copyright 2016, Sam Abrahams. All rights reserved.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.


