Skip to content

Commit fb10097

Browse files
committed
added pandoc for merging files
1 parent 8dc75be commit fb10097

7 files changed

Lines changed: 34 additions & 14 deletions

File tree

.github/workflows/convert_readme.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.
File renamed without changes.

DESCRIPTION.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
LAMMPS tutorials
2+
================
3+
4+
The content of the profile/README.md appears on the GitHub profile of the
5+
LAMMPS tutorials organization, see

DESCRIPTION.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# LAMMPS tutorials
2+
3+
The content of the profile/README.md appears on the GitHub profile of
4+
the LAMMPS tutorials organization, see
5+
6+
# Authors
7+
8+
## Project creator
9+
10+
- [Simon Gravelle](https://github.com/simongravelle), University
11+
Grenoble Alpes, CNRS, LIPhy, Grenoble, 38000, France
12+
13+
## Contributors
14+
15+
- Jacob R. Gissinger, Stevens Institute of Technology, Hoboken, NJ
16+
07030, USA
17+
- Axel Kohlmeyer, Institute for Computational Molecular Science,
18+
Temple University, Philadelphia, PA 19122, USA

file_list.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
DESCRIPTION.md
2+
AUTHORS.md

generate-README.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
files=()
4+
while IFS= read -r line; do
5+
files+=("$line")
6+
done < "file_list.txt"
7+
input_files="${files[@]}"
8+
9+
pandoc -s $input_files -o README.md

0 commit comments

Comments
 (0)