Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
ICHLL11 Article
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alice Brenon
ICHLL11 Article
Commits
09329ace
Commit
09329ace
authored
2 years ago
by
Alice Brenon
Browse files
Options
Downloads
Patches
Plain Diff
Add pandoc-secnos filter
parent
c93d48f7
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile
+1
-1
1 addition, 1 deletion
Makefile
manifest.scm
+4
-2
4 additions, 2 deletions
manifest.scm
pandoc-fignos.scm
+1
-3
1 addition, 3 deletions
pandoc-fignos.scm
pandoc-secnos.scm
+32
-0
32 additions, 0 deletions
pandoc-secnos.scm
with
38 additions
and
6 deletions
Makefile
+
1
−
1
View file @
09329ace
FIGURES
=
action_t1 arbre boumerang_t7 cathète_t9 dictionaries europe_t16 gelocus_t18 last_page_top_left_t1 sanjo_t29
SNIPPETS
=
$(
wildcard snippets/
*
.md
)
FILTERS
=
pandoc-fignos
FILTERS
=
pandoc-secnos
pandoc-fignos
FILE_NAME
=
ICHLL_Brenon
DOCX_STYLE
=
ICHLL_STYLESHEET.docx
DEPEDENCIES
=
$(
FIGURES:%
=
ressources/%.png
)
$(
SNIPPETS:%.md
=
%.png
)
biblio.bib
...
...
This diff is collapsed.
Click to expand it.
manifest.scm
+
4
−
2
View file @
09329ace
...
...
@@ -8,7 +8,8 @@
(
nongnu
packages
fonts
))
(
let
((
pandoc-fignos
(
load
"pandoc-fignos.scm"
)))
((
pandoc-fignos
(
load
"pandoc-fignos.scm"
))
(
pandoc-secnos
(
load
"pandoc-secnos.scm"
)))
(
packages->manifest
(
list
fontconfig
font-microsoft-times-new-roman
...
...
@@ -16,4 +17,5 @@
pandoc
poppler
texlive
pandoc-fignos
)))
pandoc-fignos
pandoc-secnos
)))
This diff is collapsed.
Click to expand it.
pandoc-fignos.scm
+
1
−
3
View file @
09329ace
(
use-modules
((
gnu
packages
python-xyz
)
#
:select
(
python-psutil
))
((
gnu
packages
textutils
)
#
:select
(
python-pandocfilters
))
(
guix
build-system
python
)
(
use-modules
(
guix
build-system
python
)
((
guix
download
)
#
:select
(
url-fetch
))
((
guix
licenses
)
#
:select
(
gpl3
))
(
guix
packages
))
...
...
This diff is collapsed.
Click to expand it.
pandoc-secnos.scm
0 → 100644
+
32
−
0
View file @
09329ace
(
use-modules
(
guix
build-system
python
)
((
guix
build
utils
)
#
:select
(
invoke
))
((
guix
download
)
#
:select
(
url-fetch
))
((
guix
gexp
)
#
:select
(
gexp
))
((
guix
licenses
)
#
:select
(
gpl3
))
(
guix
packages
))
(
let
((
python-pandoc-xnos
(
load
"pandoc-xnos.scm"
)))
(
package
(
name
"python-pandoc-secnos"
)
(
version
"2.2.2"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
pypi-uri
"pandoc-secnos"
version
))
(
sha256
(
base32
"0z0hz9zib3l6c2axjq823xjm9rj55ajb73rc0h0bhsh7rg2gxdqn"
))))
(
build-system
python-build-system
)
(
arguments
(
list
#
:phases
#
~
(
modify-phases
%standard-phases
(
add-before
'build
'edit-setup
(
lambda
_
(
invoke
"sed"
"-i"
"65q"
"setup.py"
))))))
(
propagated-inputs
(
list
python-pandoc-xnos
))
(
home-page
"https://github.com/tomduck/pandoc-secnos"
)
(
synopsis
"Equation number filter for pandoc"
)
(
description
"Equation number filter for pandoc"
)
(
license
gpl3
)))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment