Skip to content

Commit 2d2e44e

Browse files
committed
min edit to script headers (comments)
1 parent 4579491 commit 2d2e44e

File tree

6 files changed

+30
-9
lines changed

6 files changed

+30
-9
lines changed

archiver.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
#
3-
# Archive the working directory, creating also a "self-contained" version of layout files, with issue and journal settings appended
3+
# Archive the working directory, creating also a "self-contained" version
4+
# of layout files, with issue and journal settings appended
45
#
56
# Author: Piero Grandesso
67
# https://github.com/piero-g/markdown-workflow

fulltext-markdown.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#!/bin/bash
22
#
3-
# Convert each article manuscript (in ODT or DOCX) in markdown, and save in "./1-layout/" directory.
4-
# Also archive a backup copy of the results, log all the events and rename converted files
3+
# Convert each article manuscript (in ODT or DOCX) in markdown, and save
4+
# in "./1-layout/" directory.
5+
# Also archive a backup copy of the results, log all the events and rename
6+
# converted files
57
# Please provide the manuscript in "./0-original/"
68
#
79
# Author: Piero Grandesso

img-compress.sh

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
#!/bin/bash
22
#
3-
# Convert each image in corresponding ./layout/media_NNNN/ folder scaling it to
4-
# the given maximum width and height.
5-
# Two versions are created: a 300dpi version for PDF, a low resolution version for HTML
6-
# Future desiderata are: compression via TinyPNG API, renaming, orientation fix etc
3+
# Convert each image in corresponding ./layout/media_NNNN/ folder scaling it
4+
# to the given maximum width and height.
5+
# Two versions are created: a 300dpi version for PDF, a low resolution version
6+
# for HTML
7+
#
8+
# Future desiderata are: compression via TinyPNG API, renaming,
9+
# orientation fix etc
710
#
811
# Author: Piero Grandesso
912
# https://github.com/piero-g/markdown-workflow

markdown-galleys.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/bin/bash
22
#
3-
# Convert each article from markdown ("./1-layout/" directory) to the final publication files (galleys), and save in "./2-publication/" directory. Al the events are logged.
3+
# Convert each article from markdown ("./1-layout/" directory) to the final
4+
# publication files (galleys), and save in "./2-publication/" directory.
5+
# All the events are logged.
46
# Also archive a backup copy of the markdown version and log all the events
57
#
68
# Author: Piero Grandesso

serial-editor.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
#
3-
# YAML mass edit?
3+
# A script to perform mass edit on articles' YAML
4+
# (and maybe other useful things)
45
#
56
# Author: Piero Grandesso
67
# https://github.com/piero-g/markdown-workflow

z-lib/events-logger.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
#!/bin/bash
2+
#
3+
# A single script meant to be invoked by other scripts.
4+
# It is used to:
5+
# - check if scripts are exec in the workingDirectory
6+
# - load config (if any)
7+
# - backup the whole workingDirectory (if set)
8+
# - manage daily events.log
9+
#
10+
# Author: Piero Grandesso
11+
# https://github.com/piero-g/markdown-workflow
12+
#
113
#####
214
# config file
315
#####

0 commit comments

Comments
 (0)