Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ickc committed Jan 23, 2017
0 parents commit f39dd01
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cap.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
name: caps
# ...
12 changes: 12 additions & 0 deletions debug.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: debug
title: debug.py - inspect Pandoc's JSON output
author: Sergio Correia
homepage: https://github.com/sergiocorreia/panflute-filters
url: https://raw.githubusercontent.com/sergiocorreia/panflute-filters/master/filters/debug.yaml
version: 1.0.0
categories: [dev, inspect]
description: |
This filter pretty prints the input it receives.
This is useful when debugging panflute filters, or the package itself.
# install: <custom install commands besides simple & pip>
# uninstall: <nothing here>
4 changes: 4 additions & 0 deletions index.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- name: caps
- name: debug
- name: tabulate-elements
- name: pandoc-eqnos
7 changes: 7 additions & 0 deletions pandoc-eqnos.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: pandoc-eqnos
branches:
- branch: default
url-type: pip
- branch: dev
url: git://github.com/tomduck/pandoc-eqnos.git
url-type: simple
25 changes: 25 additions & 0 deletions spec.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: spec
version: 1.0.0
# similar to setup.py i.e. more like title
description: Spec of Formula
long_description: |
A **very long** description
# https are mandatory
url: https://to.the.actual/package
homepage: https://to.the.homepage/of/package
author: Name
author_email: [email protected]
license: MIT
description: 'long description goes here'
# This would just copy the files to the $datadir/filters folder
# question: how would a single url point to 2 files? Does the URL suppose to be the path to `xyz.py` instead then?
# should they copied to `xyz` and `abc`, i.e. no extension?
# May be situation like these should be splited into 2 formulae?
files: [xyz.py, abc.py]
keywords: [example, spec]
# may be for auto-gallery only. or may be also auto install these
# should version be controlled? Our goal is not replicating a full package manager...
install_requires: pantable
installer: pep # or cabal, etc. , this would run "pep install xyz" instead of copying files
homepage: 'https://github/someone/somerepo'
conflicts_with: None
11 changes: 11 additions & 0 deletions tabulate-elements.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
title: tabulate-elements.py - produce frequency table of the document elements
author: Sergio Correia
homepage: https://github.com/sergiocorreia/panflute-filters
url: https://raw.githubusercontent.com/sergiocorreia/panflute-filters/master/filters/tabulate-elements.yaml
version: 1.0.0
categories: [dev, inspect]
description: |
This filter returns a table with the frequencies of each Pandoc element
(Str, Space, Para, etc.).
# install: <custom install commands besides simple & pip>
# uninstall: <nothing here>

0 comments on commit f39dd01

Please sign in to comment.