pax_global_header 0000666 0000000 0000000 00000000064 14635604120 0014513 g ustar 00root root 0000000 0000000 52 comment=a3a93a65e9b98f6c27b3fae1ea47974f3bb0860a
ansi2html-1.9.2/ 0000775 0000000 0000000 00000000000 14635604120 0013425 5 ustar 00root root 0000000 0000000 ansi2html-1.9.2/.config/ 0000775 0000000 0000000 00000000000 14635604120 0014750 5 ustar 00root root 0000000 0000000 ansi2html-1.9.2/.config/requirements.txt 0000664 0000000 0000000 00000000000 14635604120 0020222 0 ustar 00root root 0000000 0000000 ansi2html-1.9.2/.coveragerc 0000664 0000000 0000000 00000000076 14635604120 0015551 0 ustar 00root root 0000000 0000000 [run]
omit = tests/*
[html]
directory = coverage_html_report
ansi2html-1.9.2/.flake8 0000664 0000000 0000000 00000000162 14635604120 0014577 0 ustar 00root root 0000000 0000000 [flake8]
format = pylint
# E203: https://github.com/python/black/issues/315
ignore = E741,W503,W504,H,E501,E203,D
ansi2html-1.9.2/.github/ 0000775 0000000 0000000 00000000000 14635604120 0014765 5 ustar 00root root 0000000 0000000 ansi2html-1.9.2/.github/CODEOWNERS 0000664 0000000 0000000 00000000022 14635604120 0016352 0 ustar 00root root 0000000 0000000 * @ssbarnea
ansi2html-1.9.2/.github/FUNDING.yml 0000664 0000000 0000000 00000000021 14635604120 0016573 0 ustar 00root root 0000000 0000000 github: ssbarnea
ansi2html-1.9.2/.github/dependabot.yml 0000664 0000000 0000000 00000000610 14635604120 0017612 0 ustar 00root root 0000000 0000000 ---
version: 2
updates:
- package-ecosystem: pip
directory: /.config/
schedule:
day: sunday
interval: weekly
labels:
- dependabot-deps-updates
- skip-changelog
versioning-strategy: lockfile-only
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: daily
labels:
- "dependencies"
- "skip-changelog"
ansi2html-1.9.2/.github/release-drafter.yml 0000664 0000000 0000000 00000000111 14635604120 0020546 0 ustar 00root root 0000000 0000000 ---
# see https://github.com/ansible/devtools
_extends: ansible/devtools
ansi2html-1.9.2/.github/workflows/ 0000775 0000000 0000000 00000000000 14635604120 0017022 5 ustar 00root root 0000000 0000000 ansi2html-1.9.2/.github/workflows/ack.yml 0000664 0000000 0000000 00000000364 14635604120 0020306 0 ustar 00root root 0000000 0000000 ---
# See https://github.com/ansible/devtools/blob/main/.github/workflows/ack.yml
name: ack
on:
pull_request_target:
types: [opened, labeled, unlabeled, synchronize]
jobs:
ack:
uses: ansible/devtools/.github/workflows/ack.yml@main
ansi2html-1.9.2/.github/workflows/push.yml 0000664 0000000 0000000 00000000370 14635604120 0020524 0 ustar 00root root 0000000 0000000 ---
# See https://github.com/ansible/devtools/blob/main/.github/workflows/push.yml
name: push
on:
push:
branches:
- main
- "releases/**"
- "stable/**"
jobs:
ack:
uses: ansible/devtools/.github/workflows/push.yml@main
ansi2html-1.9.2/.github/workflows/release.yml 0000664 0000000 0000000 00000001762 14635604120 0021173 0 ustar 00root root 0000000 0000000 ---
name: release
on:
release:
types: [published]
workflow_dispatch:
jobs:
pypi:
name: Publish to PyPI registry
environment: release
runs-on: ubuntu-22.04
permissions:
id-token: write
env:
FORCE_COLOR: 1
PY_COLORS: 1
TOXENV: pkg
steps:
- name: Switch to using Python 3.10 by default
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install tox
run: python3 -m pip install --user "tox>=4.0.0"
- name: Check out src from Git
uses: actions/checkout@v4
with:
fetch-depth: 0 # needed by setuptools-scm
submodules: true
- name: Build dists
run: python -m tox
- name: Publish to pypi.org
if: >- # "create" workflows run separately from "push" & "pull_request"
github.event_name == 'release'
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.pypi_password }}
ansi2html-1.9.2/.github/workflows/tox.yml 0000664 0000000 0000000 00000011066 14635604120 0020363 0 ustar 00root root 0000000 0000000 ---
name: tox
on:
create: # is used for publishing to PyPI and TestPyPI
tags: # any tag regardless of its name, no branches
- "**"
push: # only publishes pushes to the main branch to TestPyPI
branches: # any integration branch but not tag
- "main"
pull_request:
branches:
- "main"
release:
types:
- published # It seems that you can publish directly without creating
schedule:
- cron: 1 0 * * * # Run daily at 0:01 UTC
# Run every Friday at 18:02 UTC
# https://crontab.guru/#2_18_*_*_5
# - cron: 2 18 * * 5
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
env:
FORCE_COLOR: 1 # tox, pytest, ansible-lint
PY_COLORS: 1
jobs:
pre:
name: pre
runs-on: ubuntu-22.04
outputs:
matrix: ${{ steps.generate_matrix.outputs.matrix }}
steps:
- name: Determine matrix
id: generate_matrix
uses: coactions/dynamic-matrix@v1
with:
min_python: "3.7"
max_python: "3.12"
other_names: |
lint
pkg,docs
platforms: linux,macos
build:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os || 'ubuntu-22.04' }}
needs: pre
defaults:
run:
shell: ${{ matrix.shell || 'bash'}}
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.pre.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # needed by setuptools-scm
- name: Set pre-commit cache
uses: actions/cache@v4
if: ${{ matrix.passed_name == 'lint' }}
with:
path: |
~/.cache/pre-commit
key: pre-commit-${{ matrix.name || matrix.passed_name }}-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Set up Python ${{ matrix.python_version || '3.9' }}
uses: actions/setup-python@v5
with:
cache: pip
python-version: ${{ matrix.python_version || '3.9' }}
- name: Install tox
run: |
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade "tox>=4.0.0"
- name: Log installed dists
run: python3 -m pip freeze --all
- name: Initialize tox envs ${{ matrix.passed_name }}
run: python3 -m tox --notest --skip-missing-interpreters false -vv -e ${{ matrix.passed_name }}
timeout-minutes: 5 # average is under 1, but macos can be over 3
# sequential run improves browsing experience (almost no speed impact)
- name: tox -e ${{ matrix.passed_name }}
run: python3 -m tox -e ${{ matrix.passed_name }}
- name: Combine coverage data
if: ${{ startsWith(matrix.passed_name, 'py') }}
# produce a single .coverage file at repo root
run: tox -e py
- name: Upload coverage data
if: ${{ startsWith(matrix.passed_name, 'py') }}
uses: codecov/codecov-action@v4
with:
name: ${{ matrix.passed_name }}
fail_ci_if_error: false # see https://github.com/codecov/codecov-action/issues/598
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true # optional (default = false)
- name: Archive logs
uses: actions/upload-artifact@v4
with:
name: logs.zip
path: .tox/**/log/
# https://github.com/actions/upload-artifact/issues/123
continue-on-error: true
- name: Report failure if git reports dirty status
run: |
if [[ -n $(git status -s) ]]; then
# shellcheck disable=SC2016
echo -n '::error file=git-status::'
printf '### Failed as git reported modified and/or untracked files\n```\n%s\n```\n' "$(git status -s)" | tee -a "$GITHUB_STEP_SUMMARY"
exit 99
fi
# https://github.com/actions/toolkit/issues/193
check: # This job does nothing and is only used for the branch protection
if: always()
permissions:
pull-requests: write # allow codenotify to comment on pull-request
needs:
- build
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
- name: Check out src from Git
uses: actions/checkout@v4
- name: Notify repository owners about lint change affecting them
uses: sourcegraph/codenotify@v0.6.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# https://github.com/sourcegraph/codenotify/issues/19
continue-on-error: true
ansi2html-1.9.2/.gitignore 0000664 0000000 0000000 00000000243 14635604120 0015414 0 ustar 00root root 0000000 0000000 *.pyc
*.swp
*~
build
dist
*.egg*
README.pdf
.tox
coverage_html_report
.coverage
docs/source/_build
man/ansi2html.1.xml
src/ansi2html/_version.py
site
_readthedocs
ansi2html-1.9.2/.pre-commit-config.yaml 0000664 0000000 0000000 00000004753 14635604120 0017717 0 ustar 00root root 0000000 0000000 ---
ci:
autoupdate_commit_msg: "chore: pre-commit autoupdate"
autoupdate_schedule: monthly
autofix_commit_msg: |
chore: auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
skip:
# https://github.com/pre-commit-ci/issues/issues/55
- codecov
repos:
- repo: https://github.com/pre-commit/mirrors-prettier
# keep it before yamllint
rev: v4.0.0-alpha.8
hooks:
- id: prettier
# Temporary excludes so we can gradually normalize the formatting
exclude: >
(?x)^(
tests/.*.html
)$
always_run: true
additional_dependencies:
- prettier
- prettier-plugin-toml
- prettier-plugin-sort-json
- repo: local
hooks:
- id: codecov
name: Check codecov.yml
# https://superuser.com/a/1587813/3004
entry: >
bash -c '[ $(
curl --silent -o /dev/stderr -w "%{http_code}" -X POST --data-binary @codecov.yml https://codecov.io/validate
) -eq 200 ]'
language: system
files: "codecov.yml"
pass_filenames: false
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/psf/black.git
rev: 24.4.2
hooks:
- id: black
language_version: python3
- repo: https://github.com/pre-commit/pre-commit-hooks.git
rev: v4.6.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
- id: mixed-line-ending
- id: fix-byte-order-marker
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: debug-statements
language_version: python3
- repo: https://github.com/PyCQA/flake8
rev: 7.0.0
hooks:
- id: flake8
additional_dependencies:
- pydocstyle>=6.1.1
- flake8-docstrings>=1.6.0
- flake8-absolute-import>=1.0
- flake8-black>=0.2.3
- flake8-pytest-style>=1.5.0
language_version: python3
- repo: https://github.com/pycqa/pylint
rev: v3.2.2
hooks:
- id: pylint
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.10.0
hooks:
- id: mypy
# empty args needed in order to match mypy cli behavior
args: ["--strict"]
additional_dependencies:
- pytest
- types-setuptools
- types-pkg_resources
- types-mock
exclude: >
(?x)^(
docs/.*|
setup.py
)$
ansi2html-1.9.2/.readthedocs.yml 0000664 0000000 0000000 00000000507 14635604120 0016515 0 ustar 00root root 0000000 0000000 ---
version: 2
mkdocs:
fail_on_warning: true
configuration: mkdocs.yml
build:
os: ubuntu-22.04
tools:
python: "3.11"
commands:
- pip install --user tox
- python3 -m tox -e docs
python:
install:
- method: pip
path: tox
- method: pip
path: .
extra_requirements:
- docs
ansi2html-1.9.2/LICENSE 0000664 0000000 0000000 00000016744 14635604120 0014446 0 ustar 00root root 0000000 0000000 GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc.
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:
a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:
a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license
document.
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.
c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.
1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.
e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)
5. Combined Libraries.
You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.
ansi2html-1.9.2/MANIFEST.in 0000664 0000000 0000000 00000000251 14635604120 0015161 0 ustar 00root root 0000000 0000000 include README.rst
include LICENSE
include man/asciidoc.conf
include man/ansi2html.1
include man/ansi2html.1.txt
recursive-include tests *
recursive-exclude tests *.pyc
ansi2html-1.9.2/README.md 0000664 0000000 0000000 00000002534 14635604120 0014710 0 ustar 00root root 0000000 0000000 [](https://github.com/pycontribs/ansi2html/actions?query=workflow%3Atox+branch%3Amain)
# ansi2html
Convert text with ANSI color codes to HTML or to LaTeX.
Inspired by and developed off of the work of
[pixelbeat](https://www.pixelbeat.org/docs/terminal_colours/) and
[blackjack](https://web.archive.org/web/20100911103911/http://www.koders.com/python/fid5D57DD37184B558819D0EE22FCFD67F53078B2A3.aspx).
[Read the docs](https://ansi2html.readthedocs.io/) for more
informations.
## Example - Python API
```python
from ansi2html import Ansi2HTMLConverter
conv = Ansi2HTMLConverter()
ansi = "".join(sys.stdin.readlines())
html = conv.convert(ansi)
```
## Example - Shell Usage
```shell
$ ls --color=always | ansi2html > directories.html
$ sudo tail /var/log/messages | ccze -A | ansi2html > logs.html
$ task rc._forcecolor:yes limit:0 burndown | ansi2html > burndown.html
```
See the list of full options with:
```shell
$ ansi2html --help
```
## Get this project:
```shell
$ pip3 install ansi2html
```
Source:
pypi:
## License
`ansi2html` is licensed LGPLv3+.
# Credits
- Author: [Ralph Bean](mailto:rbean@redhat.com)
- Contributor: [Robin Schneider](mailto:ypid23@aol.de)
ansi2html-1.9.2/codecov.yml 0000664 0000000 0000000 00000000254 14635604120 0015573 0 ustar 00root root 0000000 0000000 codecov:
notify:
wait_for_ci: true
require_ci_to_pass: true
comment: false
coverage:
status:
patch: false
project:
default:
threshold: 0.5%
ansi2html-1.9.2/docs/ 0000775 0000000 0000000 00000000000 14635604120 0014355 5 ustar 00root root 0000000 0000000 ansi2html-1.9.2/docs/api.md 0000664 0000000 0000000 00000000062 14635604120 0015446 0 ustar 00root root 0000000 0000000 # API Reference
::: ansi2html.Ansi2HTMLConverter
ansi2html-1.9.2/docs/changelog.md 0000664 0000000 0000000 00000061236 14635604120 0016636 0 ustar 00root root 0000000 0000000 ---
title: Changelog
---
# 1.7.0
## Minor Changes
- Replace recommendation of using system packages with pip3
([#129](https://github.com/pycontribs/ansi2html/pull/129))
@ssbarnea
- Add truecolor support
([#155](https://github.com/pycontribs/ansi2html/pull/155))
@miltolstoy
- Generate documentation with Sphinx and use Read the Docs
([#141](https://github.com/pycontribs/ansi2html/pull/141))
@tristanlatr
- Adds support for OSC hyperlink sequences.
([#131](https://github.com/pycontribs/ansi2html/pull/131))
@hakonhagland
## Bugfixes
- Add test coverage
([#148](https://github.com/pycontribs/ansi2html/pull/148))
@ziegenberg
- Replace pkg_resources with importlib.metadata
([#144](https://github.com/pycontribs/ansi2html/pull/144))
@ziegenberg
- fix including of CHANGELOG.rst
([#151](https://github.com/pycontribs/ansi2html/pull/151))
@ziegenberg
- Update linting dependencies
([#147](https://github.com/pycontribs/ansi2html/pull/147))
@ziegenberg
- Upgrade the build process
([#145](https://github.com/pycontribs/ansi2html/pull/145))
@ziegenberg
- Add type hinting
([#143](https://github.com/pycontribs/ansi2html/pull/143))
@ziegenberg
- Update CI badges in readme
([#142](https://github.com/pycontribs/ansi2html/pull/142))
@ssbarnea
- Bump setuptools-scm version
([#138](https://github.com/pycontribs/ansi2html/pull/138))
@ssbarnea
Kudos goes to: @hakonhagland, @miltolstoy, @pre-commit-ci,
@pre-commit-ci\[bot\], @ssbarnea, @tristanlatr and @ziegenberg
# 1.6.0
## Changes
- Switching from nosetest to unittest
([#103](https://github.com/pycontribs/ansi2html/pull/103))
@paolostivanin
- Add dracula colorscheme
([#106](https://github.com/pycontribs/ansi2html/pull/106))
@ahmubashshir
- Refactor packaging by replacing old setup.py based packaging with
modern pep517 based one
([#112](https://github.com/pycontribs/ansi2html/pull/112))
@ssbarnea
- Replace travis with github actions
([#121](https://github.com/pycontribs/ansi2html/pull/121))
@ssbarnea
## Bugfixes
- Correct author metadata
([#122](https://github.com/pycontribs/ansi2html/pull/122))
@ssbarnea
## Deprecations
- Officially retire support for Python \<=3.5
([#112](https://github.com/pycontribs/ansi2html/pull/112))
@ssbarnea
# 1.5.2
## Commits {#commits_1_5_2}
- Update pypi python versions.
[5688d50ae](https://github.com/pycontribs/ansi2html/commit/5688d50ae)
# 1.5.1
Include manpage in release.
# 1.5.0
## Pull Requests {#pr_1_5_0}
- add support for vt100 box drawing mode and high-intensity ansi codes
([#90](https://github.com/pycontribs/ansi2html/pull/90))
@p-sherratt
## Commits {#commits_1_5_0}
- add support for vt100 box drawing mode and high-intensity ansi codes
[bf327d216](https://github.com/pycontribs/ansi2html/commit/bf327d216)
- make \'intense\' colors more \'intense\'
[d9bf45f81](https://github.com/pycontribs/ansi2html/commit/d9bf45f81)
- restore css ordering for unit tests
[3bf89663a](https://github.com/pycontribs/ansi2html/commit/3bf89663a)
- trivial fix/update
[289d01595](https://github.com/pycontribs/ansi2html/commit/289d01595)
- update test_produce_headers unit test
[0ea0a71f7](https://github.com/pycontribs/ansi2html/commit/0ea0a71f7)
- another fix/update for box drawing & high-intensity patch
[ed942a5d2](https://github.com/pycontribs/ansi2html/commit/ed942a5d2)
# 1.4.2
## Commits {#commits_1_4_2}
- py36
[efb491f09](https://github.com/pycontribs/ansi2html/commit/efb491f09)
- Restore CSS styles for background colors.
[947f813a3](https://github.com/pycontribs/ansi2html/commit/947f813a3)
# 1.4.1
## Pull Requests {#pr_1_4_1}
- Fix undefined behavior with linkify when same url is repeated in
same line ([#85](https://github.com/pycontribs/ansi2html/pull/85))
@qsujanadiga-practo
## Commits {#commits_1_4_1}
- Update converter.py
[9adc3ddef](https://github.com/pycontribs/ansi2html/commit/9adc3ddef)
- Fix linkify with latex
[11cb73657](https://github.com/pycontribs/ansi2html/commit/11cb73657)
- Update url regex
[190835f4f](https://github.com/pycontribs/ansi2html/commit/190835f4f)
# 1.4.0
## Pull Requests {#pr_1_4_0}
- Prune CSS classes from output that are not used
([#84](https://github.com/pycontribs/ansi2html/pull/84)) @cfstras
## Commits {#commits_1_4_0}
- Prune CSS classes from output that are not used
[61f4b5368](https://github.com/pycontribs/ansi2html/commit/61f4b5368)
- fix tests: remove unused CSS
[753220215](https://github.com/pycontribs/ansi2html/commit/753220215)
# 1.3.0
**Relicensed to LGPLv3+**.
## Pull Requests {#pr_1_3_0}
- Relicensed to LGPLv3+
([#80](https://github.com/pycontribs/ansi2html/pull/80)) @ralphbean
## Commits {#commits_1_3_0}
- Relicensed to LGPLv3+
[f74316174](https://github.com/pycontribs/ansi2html/commit/f74316174)
# 1.2.0
## Pull Requests {#pr_1_2_0}
- enable python 3 input decoding
([#64](https://github.com/pycontribs/ansi2html/pull/64)) @kaspar030
- Fix handling cursor move up with unique and empty lines
([#67](https://github.com/pycontribs/ansi2html/pull/67)) @gberaudo
- Give more useful TaskWarrior example
([#68](https://github.com/pycontribs/ansi2html/pull/68))
@AloisMahdal
- Update style.py
([#69](https://github.com/pycontribs/ansi2html/pull/69)) @karjaneth
- Revert \"six is called six, not python-six\"
([#73](https://github.com/pycontribs/ansi2html/pull/73))
@JensTimmerman
## Commits {#commits_1_2_0}
- enable python 3 input decoding
[d6e4bc0aa](https://github.com/pycontribs/ansi2html/commit/d6e4bc0aa)
- Fix handling cursor move up with unique and empty lines
[1e6a3b81f](https://github.com/pycontribs/ansi2html/commit/1e6a3b81f)
- Give more useful TaskWarrior example
[46e480143](https://github.com/pycontribs/ansi2html/commit/46e480143)
- Update style.py
[0c975b60b](https://github.com/pycontribs/ansi2html/commit/0c975b60b)
- Revert \"six is called six, not python-six\"
[168805a00](https://github.com/pycontribs/ansi2html/commit/168805a00)
- Tox for tests.
[90c8c2303](https://github.com/pycontribs/ansi2html/commit/90c8c2303)
- Merge branch \'develop\' of github.com:ralphbean/ansi2html into
develop
[1366309e1](https://github.com/pycontribs/ansi2html/commit/1366309e1)
# 1.1.1
## Pull Requests {#pr_1_1_1}
- six is called six, not python-six
([#61](https://github.com/pycontribs/ansi2html/pull/61))
@JensTimmerman
## Commits {#commits_1_1_1}
- Drop 2.6
[81bb739b1](https://github.com/pycontribs/ansi2html/commit/81bb739b1)
- six is called six, not python-six
[cec1dd933](https://github.com/pycontribs/ansi2html/commit/cec1dd933)
- Exclude .pyc files from the release tarball.
[0dfd66b0b](https://github.com/pycontribs/ansi2html/commit/0dfd66b0b)
- Remove CHANGELOG header.
[7b8643066](https://github.com/pycontribs/ansi2html/commit/7b8643066)
# 1.1.0
- 1.0.4
[96b6f19ae](https://github.com/pycontribs/ansi2html/commit/96b6f19ae99a239051cd52c8edd7980d791736e9)
- 1.0.4
[b7e6e048c](https://github.com/pycontribs/ansi2html/commit/b7e6e048cc78324849c2af93d4948f6bc696ff09)
- 1.0.5
[f9cab7af7](https://github.com/pycontribs/ansi2html/commit/f9cab7af7483969d73e3696e988945cc797e5149)
- 1.0.9
[1594cddb7](https://github.com/pycontribs/ansi2html/commit/1594cddb714890ee7878150da679c89373f8846b)
# 1.0.8
- added setup.cfg file
[547bd1cb5](https://github.com/pycontribs/ansi2html/commit/547bd1cb5e5e65ab674d3cd489af872213f60051)
- Merge branch \'develop\' of github.com:ralphbean/ansi2html into
develop
[352d14be6](https://github.com/pycontribs/ansi2html/commit/352d14be694c0bfb10119c00639f319697587c26)
- changed setup.cfg to work on python 2.6.6
[7a12a92ed](https://github.com/pycontribs/ansi2html/commit/7a12a92edf1747e64b28cb41c7e0f11787d7774e)
- actually, python 2.6.6 on RH, centos etc has OrderedDict
[512377d63](https://github.com/pycontribs/ansi2html/commit/512377d63f7ecfb583530121330d9a0552a24e78)
- Merge pull request #55 from JensTimmerman/develop
[03c3e680c](https://github.com/pycontribs/ansi2html/commit/03c3e680c90ca77c24ee465213a88f3726caf5bf)
- Prevent IndexError while handling CursorMoveUp
[7a91200df](https://github.com/pycontribs/ansi2html/commit/7a91200df0d6f088b0ba947420d8829bf04caecd)
- Merge pull request #56 from lqez/fix/over-cursormoveup
[a23772b57](https://github.com/pycontribs/ansi2html/commit/a23772b57d584676792cbcdb74266c361a831f61)
- style: Include all 16 solarized colors in the scheme
[081c9a741](https://github.com/pycontribs/ansi2html/commit/081c9a741d1b0f09d8ab9c66dc9647bb882142c2)
- style: Encode pallete in 256 color encoding
[acaa92ff2](https://github.com/pycontribs/ansi2html/commit/acaa92ff2370d7ebda85ee68a47bfdb7d309a811)
- Merge pull request #57 from tbabej/develop
[e1bd92d3e](https://github.com/pycontribs/ansi2html/commit/e1bd92d3e735d5143a81836ca6eb5e6d597bd987)
- Update travis config.
[74c4f1dc8](https://github.com/pycontribs/ansi2html/commit/74c4f1dc8b6c3ca41dd9dee284922c88f5934d10)
- Fix existing test suite.
[eb7798cb7](https://github.com/pycontribs/ansi2html/commit/eb7798cb7704465f242e97149d7483074f4d6226)
- Fill out color palettes that were under-specified.
[5e55018eb](https://github.com/pycontribs/ansi2html/commit/5e55018eb331e2d934215821e874e30eab20e6ef)
- Merge branch \'feature/fixes\' into develop
[100be7c2d](https://github.com/pycontribs/ansi2html/commit/100be7c2d83d40d10b161d3def9b8e2b56e49b32)
- Fix line height stuff.
[db1ee5b47](https://github.com/pycontribs/ansi2html/commit/db1ee5b47c0495ebb6bffb39c17891fe25dcd8d7)
- Fix tests for the new palette values.
[e8c6b9362](https://github.com/pycontribs/ansi2html/commit/e8c6b9362287033c6d9296d61f8940aaae8703a4)
# 1.0.7
- Implemented LaTeX support. Only colors are supported but it does
already what I need.
[caa8c6fe5](https://github.com/pycontribs/ansi2html/commit/caa8c6fe5010c3d912aac47ce1e6e3aeaddfaa17)
- Updated README.rst.
[4979c1409](https://github.com/pycontribs/ansi2html/commit/4979c14091e43ee1090dc2399e04f57e8d60db95)
- Added first test for LaTeX output.
[4b80d41e0](https://github.com/pycontribs/ansi2html/commit/4b80d41e0bd1f7bc4dd73df82cc67acb6917d4e9)
- Added title and linkify for LaTeX.
[3a869bce1](https://github.com/pycontribs/ansi2html/commit/3a869bce19a6ad0c219d1c5f524e9c7b9784f978)
- Trying to fix
.
[a0a06b41c](https://github.com/pycontribs/ansi2html/commit/a0a06b41cc7fe10e5241954fc03438c41a16a338)
- Fixed unicode escape problem. Fixes
.
[095eca5a5](https://github.com/pycontribs/ansi2html/commit/095eca5a5731ce45a1a4cbf77e3cdfdf2e6716cb)
- Sure % has a special meaning ...
[2324a3dcf](https://github.com/pycontribs/ansi2html/commit/2324a3dcfe5b9896d0e93aec4b9de4202894eb73)
- Merge pull request #48 from ypid/ansi2latex
[91e174cfd](https://github.com/pycontribs/ansi2html/commit/91e174cfd207c2fa273153ba11275459c3a5a1a2)
- set pre\'s id to \"content\"
[6f14bc202](https://github.com/pycontribs/ansi2html/commit/6f14bc202afa20379cdc3b5c15819119ea8b524f)
- the css
[418bef2f0](https://github.com/pycontribs/ansi2html/commit/418bef2f03dd36e7ad0dac663db0e917879d3dee)
- Merge pull request #50 from szepeviktor/patch-2
[97977e53b](https://github.com/pycontribs/ansi2html/commit/97977e53b4c85738be603c7f236958f95aacf1f9)
- Merge pull request #52 from szepeviktor/patch-3
[620fc1032](https://github.com/pycontribs/ansi2html/commit/620fc1032af177406b17facfa20093b85772a2c5)
- Use the data_files that we build above.
[654bc30b4](https://github.com/pycontribs/ansi2html/commit/654bc30b40d89acdec91a194ff8651a6db86f812)
# 1.0.6
- 1.0.5
[f9cab7af7](https://github.com/pycontribs/ansi2html/commit/f9cab7af7483969d73e3696e988945cc797e5149)
- use optparse choices to deal with invalid scheme selection.
[214d73609](https://github.com/pycontribs/ansi2html/commit/214d73609ff0e0dd645778dbbc0392cd340f8df5)
- added solarized and os X terminal color schemes
[2176bc4d0](https://github.com/pycontribs/ansi2html/commit/2176bc4d050f52b69dd9227e29508a9dfd2e1b0a)
- Merge pull request #41 from schettino72/more-schemes
[609326371](https://github.com/pycontribs/ansi2html/commit/609326371e74c8f19c4185f76a64e24f54d6cfbf)
- Revert \"Conditionally install man page into system or virtualenv.
For #39.\"
[c1ee2bac9](https://github.com/pycontribs/ansi2html/commit/c1ee2bac9bf66944cce387a4f1a534a408966d6a)
- Install man page to \${PREFIX}, not /usr (issue #39)
[86abc9e3d](https://github.com/pycontribs/ansi2html/commit/86abc9e3dd8769af848a93ac2afc3728688554b3)
- Merge pull request #42 from hartwork/issue-39
[e81c55b38](https://github.com/pycontribs/ansi2html/commit/e81c55b38b3368ceb05842823f980320607ed6db)
- add empty title element to head section in html output
[c16fe680b](https://github.com/pycontribs/ansi2html/commit/c16fe680b18fa5c880ae8ed71fab3b062c2a371a)
- Merge pull request #43 from CBke/develop
[c13f4a985](https://github.com/pycontribs/ansi2html/commit/c13f4a9852785fc4c68d416747923b2f6653faca)
- 1.0.4
[40526f43a](https://github.com/pycontribs/ansi2html/commit/40526f43a009c85fddc0ab34de51e9eb94883e1c)
- 1.0.5
[e6a150e9d](https://github.com/pycontribs/ansi2html/commit/e6a150e9dd00f607ad32377878e36e2783cba784)
- Fix tests for added title.
[aab8348ce](https://github.com/pycontribs/ansi2html/commit/aab8348ced14e747178772b49e0a796effeec974)
- add option \--title for filling in the title
[007e77c50](https://github.com/pycontribs/ansi2html/commit/007e77c507cd9bc8465caa46fc47abbd66d5c313)
- Merge pull request #44 from CBke/develop
[4fd918e54](https://github.com/pycontribs/ansi2html/commit/4fd918e54e62d2658f3fdedc5347070de96ddcff)
- Drop manpage installation stuff.
[a2f157614](https://github.com/pycontribs/ansi2html/commit/a2f157614243e70d0134818ef1c37b1b780339d5)
# 1.0.5
- added support to select a color-scheme. added schemes \'xterm\' and
\'xterm-bright\'
[367289a86](https://github.com/pycontribs/ansi2html/commit/367289a86bb81f0c22801b6db7b63cc8acdec300)
- Merge pull request #40 from schettino72/color-schemes
[1111aec78](https://github.com/pycontribs/ansi2html/commit/1111aec7863584c1153438e89833f53be29fa249)
- 1.0.4
[96b6f19ae](https://github.com/pycontribs/ansi2html/commit/96b6f19ae99a239051cd52c8edd7980d791736e9)
- 1.0.4
[b7e6e048c](https://github.com/pycontribs/ansi2html/commit/b7e6e048cc78324849c2af93d4948f6bc696ff09)
# 1.0.4
# 1.0.3
- Makefile: Fix regression where version bumps would not force a
rebuild of the man page
[750fe09fe](https://github.com/pycontribs/ansi2html/commit/750fe09feccf600ee19d5842649a9b9cd6965510)
- Makefile: Mark target upload as phony
[ac3877f57](https://github.com/pycontribs/ansi2html/commit/ac3877f5728281ed2df792767ad18e6283001615)
- Merge pull request #38 from hartwork/dependency-regression
[10b6051a4](https://github.com/pycontribs/ansi2html/commit/10b6051a4bd207064a77b5f28be7e6954c028d8b)
- Conditionally install man page into system or virtualenv. For #39.
[720ac2f93](https://github.com/pycontribs/ansi2html/commit/720ac2f93e6dfb1c77520dc5f7aeab4f031dfd75)
# 1.0.2
- Add an upload command to the Makefile.
[12e68427c](https://github.com/pycontribs/ansi2html/commit/12e68427c8dc4255bb4da8ccd8024c2b742be8e8)
- Tweak travis setup.
[07a95ef6e](https://github.com/pycontribs/ansi2html/commit/07a95ef6e5d0c6afc5ee53fa5ce6f9c5bc3a2bab)
- Remove a forgotten import.
[756139724](https://github.com/pycontribs/ansi2html/commit/75613972499b6ee18326bdd2989e5411ad475ce9)
# 1.0.1
- Change the way we store version info.
[4e4eaef33](https://github.com/pycontribs/ansi2html/commit/4e4eaef33d27aea931b57c3eee61ec16cc47cf87)
# 1.0.0
- Add trove for py3.3.
[683f672fa](https://github.com/pycontribs/ansi2html/commit/683f672fa6071cc7390b6c64858127fe0b1e2e77)
- Stop adding unwanted spaces (issue 26)
[b5163a80f](https://github.com/pycontribs/ansi2html/commit/b5163a80feea7f6ba8879357524ccbe143e68281)
- Add test for issue 25
[6df79eb8b](https://github.com/pycontribs/ansi2html/commit/6df79eb8b95b2c36e7395bedcd13e0facb323434)
- Fix destructive reset marker handling (issue 25)
[4db97b126](https://github.com/pycontribs/ansi2html/commit/4db97b126c600d30a922ab5899faa8879f699739)
- Fix ANSI code decoding (issue 25)
[f277f8f3c](https://github.com/pycontribs/ansi2html/commit/f277f8f3c4eaa1256c5df66238583b5a69882456)
- Fix writing to sys.stdout.buffer
[7a3267d53](https://github.com/pycontribs/ansi2html/commit/7a3267d53a2ea61a0af6021faedf154ba89b2f87)
- Add convenience Makefile
[8d3f3e055](https://github.com/pycontribs/ansi2html/commit/8d3f3e055e679bf723d6a846fbff2c95a7224b9a)
- Merge pull request #30 from hartwork/makefile
[156bc89da](https://github.com/pycontribs/ansi2html/commit/156bc89da97c7de19b2beb8e2de7bde2f2535a20)
- Merge pull request #29 from hartwork/issue_29
[8495723ae](https://github.com/pycontribs/ansi2html/commit/8495723ae8e057248537a53f9e7e800547d6640e)
- Merge pull request #27 from hartwork/issue_26
[74d237c18](https://github.com/pycontribs/ansi2html/commit/74d237c18165625bedde85e25f1eb988f0da8ca1)
- Merge pull request #28 from hartwork/issue_25
[8c77f6d93](https://github.com/pycontribs/ansi2html/commit/8c77f6d93754c03fc256754de73b8b2bf1d6c08c)
- Fix italic to be font-style (rather than font-weight)
[47b533b6d](https://github.com/pycontribs/ansi2html/commit/47b533b6de62ebe97d32322eaa3a5dcec735a077)
- Add inv\* CSS classes
[408808197](https://github.com/pycontribs/ansi2html/commit/408808197e9b33aa55210b5f03940267b3e01c83)
- Handle state in code, not in HTML; support more ANSI codes
[fce66a6a9](https://github.com/pycontribs/ansi2html/commit/fce66a6a905fb6aa006cfa1f6ad4716ebb46e63b)
- Adapt tests to new approach to state
[49046c620](https://github.com/pycontribs/ansi2html/commit/49046c620079d3a325753081ba99b1deb0c8287a)
- Add CSS classes for lighter font style (2), blinking (5/6), hidden
text (8)
[e488daca3](https://github.com/pycontribs/ansi2html/commit/e488daca38176c9cdba7318a958fc79bfb16f9cb)
- Save producing no-op span tags
[340620f88](https://github.com/pycontribs/ansi2html/commit/340620f88b66a686c16f155465f172321fe39cff)
- Test ANSI codes that just turned supported
[f4774bcf0](https://github.com/pycontribs/ansi2html/commit/f4774bcf0005175bc00f282f73365fa59b6f47fb)
- Make code testing pairs of files re-usable
[f95ca305d](https://github.com/pycontribs/ansi2html/commit/f95ca305dba5951c25178fc12fb0e206120aa1b4)
- Add testcase for output from \"eix -I svn -F\"
[e3f593671](https://github.com/pycontribs/ansi2html/commit/e3f59367174fb9ed4df2d19ed012bae45f0ce2ce)
- Merge pull request #31 from hartwork/font-style-italic
[a25950fe6](https://github.com/pycontribs/ansi2html/commit/a25950fe6f0bdd12c92cbbd2109655bfd1cc5a36)
- Tweak for py3 support.
[9766508e1](https://github.com/pycontribs/ansi2html/commit/9766508e16007fdcd764ba52c79af798d8d816fd)
- Add py3.3 to travis config.
[ceef1eb8e](https://github.com/pycontribs/ansi2html/commit/ceef1eb8e83a58fe895f67185f4242b8e49f7b7c)
- Merge branch \'stateful\' into develop
[29868b6ec](https://github.com/pycontribs/ansi2html/commit/29868b6ec1e742a23e3b60db17f187ce75bb3d57)
- 0.10.0
[b5c65d3a4](https://github.com/pycontribs/ansi2html/commit/b5c65d3a4fa666aa397409900677c9c115625be7)
- Add missing license headers
[44e5e52fa](https://github.com/pycontribs/ansi2html/commit/44e5e52faf6ea1eef57b8a3b1173f6794683dd4d)
- Fix README example to not produce unwanted spaces (issue 26)
[cc6a0dbfa](https://github.com/pycontribs/ansi2html/commit/cc6a0dbfa2a86a827f8f737b0b610cbcb9afe282)
- Add \--version parameter, control version in version.py
[0b2006095](https://github.com/pycontribs/ansi2html/commit/0b2006095e4b56896773fdaa4fb6b5526ecbde58)
- Improve \--help output
[26d297807](https://github.com/pycontribs/ansi2html/commit/26d2978072f2f13836219d4999ff6b7d12ed031a)
- Add and integrate man page
[2ec363007](https://github.com/pycontribs/ansi2html/commit/2ec363007f49b91275d146414313783ba4d5ab61)
- No longer process line-by-line (fixes \--partial and \--inline,
issue 36)
[e3e86f9f8](https://github.com/pycontribs/ansi2html/commit/e3e86f9f874a4243ee66a88022e752c7ceaf338e)
- Test cross-line state (related to issue 36)
[c3eb8b9c5](https://github.com/pycontribs/ansi2html/commit/c3eb8b9c51828da2e94aff9f5f77a363bc841850)
- Fix approach to trailing newlines
[95e75e4d3](https://github.com/pycontribs/ansi2html/commit/95e75e4d3e844aa33fb89045953c5d4869b3dbd2)
- Merge pull request #37 from hartwork/fix-line-handling
[0fb5443ca](https://github.com/pycontribs/ansi2html/commit/0fb5443ca094bed79a4e30964716b2c3f875cb96)
- Merge pull request #33 from hartwork/headers
[12bfa3251](https://github.com/pycontribs/ansi2html/commit/12bfa325141f7c7f7d7a9f65147d30a3082fc53b)
- Merge pull request #34 from hartwork/fix-readme-example
[b1ed96e00](https://github.com/pycontribs/ansi2html/commit/b1ed96e00d324f0a4557917c02f425266dd224c1)
- Merge pull request #35 from hartwork/manpage
[ad608eb2b](https://github.com/pycontribs/ansi2html/commit/ad608eb2b26751e983ac9e31ae412698f45d4664)
# 0.9.4
- Fix encoding issue.
[64881f549](https://github.com/pycontribs/ansi2html/commit/64881f549126f5c576df7b75e70e49633fe59337)
- Silence silly py2.7 test errors.
[b5db644ff](https://github.com/pycontribs/ansi2html/commit/b5db644ffa29497bd16dc0f0adae7f0847603f2c)
# 0.9.3
- Fix encoding issue.
[64881f549](https://github.com/pycontribs/ansi2html/commit/64881f549126f5c576df7b75e70e49633fe59337)
- Silence silly py2.7 test errors.
[b5db644ff](https://github.com/pycontribs/ansi2html/commit/b5db644ffa29497bd16dc0f0adae7f0847603f2c)
- Fix little encoding issue.
[8cfbe166c](https://github.com/pycontribs/ansi2html/commit/8cfbe166c5645e459ad0ff3c061634a2146c26b9)
- Add trove for py3.3.
[683f672fa](https://github.com/pycontribs/ansi2html/commit/683f672fa6071cc7390b6c64858127fe0b1e2e77)
- Stop adding unwanted spaces (issue 26)
[b5163a80f](https://github.com/pycontribs/ansi2html/commit/b5163a80feea7f6ba8879357524ccbe143e68281)
- Add test for issue 25
[6df79eb8b](https://github.com/pycontribs/ansi2html/commit/6df79eb8b95b2c36e7395bedcd13e0facb323434)
- Fix destructive reset marker handling (issue 25)
[4db97b126](https://github.com/pycontribs/ansi2html/commit/4db97b126c600d30a922ab5899faa8879f699739)
- Fix ANSI code decoding (issue 25)
[f277f8f3c](https://github.com/pycontribs/ansi2html/commit/f277f8f3c4eaa1256c5df66238583b5a69882456)
- Fix writing to sys.stdout.buffer
[7a3267d53](https://github.com/pycontribs/ansi2html/commit/7a3267d53a2ea61a0af6021faedf154ba89b2f87)
- Add convenience Makefile
[8d3f3e055](https://github.com/pycontribs/ansi2html/commit/8d3f3e055e679bf723d6a846fbff2c95a7224b9a)
- Merge pull request #30 from hartwork/makefile
[156bc89da](https://github.com/pycontribs/ansi2html/commit/156bc89da97c7de19b2beb8e2de7bde2f2535a20)
- Merge pull request #29 from hartwork/issue_29
[8495723ae](https://github.com/pycontribs/ansi2html/commit/8495723ae8e057248537a53f9e7e800547d6640e)
- Merge pull request #27 from hartwork/issue_26
[74d237c18](https://github.com/pycontribs/ansi2html/commit/74d237c18165625bedde85e25f1eb988f0da8ca1)
- Merge pull request #28 from hartwork/issue_25
[8c77f6d93](https://github.com/pycontribs/ansi2html/commit/8c77f6d93754c03fc256754de73b8b2bf1d6c08c)
- Fix italic to be font-style (rather than font-weight)
[47b533b6d](https://github.com/pycontribs/ansi2html/commit/47b533b6de62ebe97d32322eaa3a5dcec735a077)
- Add inv\* CSS classes
[408808197](https://github.com/pycontribs/ansi2html/commit/408808197e9b33aa55210b5f03940267b3e01c83)
- Handle state in code, not in HTML; support more ANSI codes
[fce66a6a9](https://github.com/pycontribs/ansi2html/commit/fce66a6a905fb6aa006cfa1f6ad4716ebb46e63b)
- Adapt tests to new approach to state
[49046c620](https://github.com/pycontribs/ansi2html/commit/49046c620079d3a325753081ba99b1deb0c8287a)
- Add CSS classes for lighter font style (2), blinking (5/6), hidden
text (8)
[e488daca3](https://github.com/pycontribs/ansi2html/commit/e488daca38176c9cdba7318a958fc79bfb16f9cb)
- Save producing no-op span tags
[340620f88](https://github.com/pycontribs/ansi2html/commit/340620f88b66a686c16f155465f172321fe39cff)
- Test ANSI codes that just turned supported
[f4774bcf0](https://github.com/pycontribs/ansi2html/commit/f4774bcf0005175bc00f282f73365fa59b6f47fb)
- Make code testing pairs of files re-usable
[f95ca305d](https://github.com/pycontribs/ansi2html/commit/f95ca305dba5951c25178fc12fb0e206120aa1b4)
- Add testcase for output from \"eix -I svn -F\"
[e3f593671](https://github.com/pycontribs/ansi2html/commit/e3f59367174fb9ed4df2d19ed012bae45f0ce2ce)
- Merge pull request #31 from hartwork/font-style-italic
[a25950fe6](https://github.com/pycontribs/ansi2html/commit/a25950fe6f0bdd12c92cbbd2109655bfd1cc5a36)
- Tweak for py3 support.
[9766508e1](https://github.com/pycontribs/ansi2html/commit/9766508e16007fdcd764ba52c79af798d8d816fd)
- Add py3.3 to travis config.
[ceef1eb8e](https://github.com/pycontribs/ansi2html/commit/ceef1eb8e83a58fe895f67185f4242b8e49f7b7c)
- Merge branch \'stateful\' into develop
[29868b6ec](https://github.com/pycontribs/ansi2html/commit/29868b6ec1e742a23e3b60db17f187ce75bb3d57)
ansi2html-1.9.2/docs/index.md 0000777 0000000 0000000 00000000000 14635604120 0017473 2../README.md ustar 00root root 0000000 0000000 ansi2html-1.9.2/man/ 0000775 0000000 0000000 00000000000 14635604120 0014200 5 ustar 00root root 0000000 0000000 ansi2html-1.9.2/man/.gitignore 0000664 0000000 0000000 00000000015 14635604120 0016164 0 ustar 00root root 0000000 0000000 /ansi2html.1
ansi2html-1.9.2/man/ansi2html.1.txt 0000664 0000000 0000000 00000003044 14635604120 0017002 0 ustar 00root root 0000000 0000000 ANSI2HTML(1)
============
:doctype: manpage
:man source: {manual_package}
:man version: {manual_version}
:man manual: {manual_title}
NAME
----
ansi2html - Convert text with ANSI color codes to HTML
SYNOPSIS
--------
*ansi2html* ['OPTIONS'] [*--inline*] [*--partial*]
DESCRIPTION
-----------
Tool to convert text with ANSI color codes to HTML.
OPTIONS
-------
*-p*, *--partial*::
Process lines as them come in. No headers are produced.
*-i*, *--inline*::
Inline style without headers or template.
*-H*, *--headers*::
Just produce the "
%(content)s