Skip to content
Permalink
929f2a77b2
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
13 lines (13 sloc) 596 Bytes
Get-ChildItem .\master_files\labs -Recurse -filter "*.md" | foreach {
$name = [System.IO.Path]::GetFileNameWithoutExtension($_.Name)
$fullName = $_.FullName
Copy-Item $fullName .\docs\labs\html\$name.md
# pandoc.exe `
# -f markdown `
# --to html5 `
# --template=https://github.coventry.ac.uk/pages/ab6459/reveal.js/dist/templates/lab_template.html `
# -B https://github.coventry.ac.uk/pages/ab6459/reveal.js/headers/lab/4061cem.html `
# -A .\master_files\labs\checklists\$name.html `
# -o .\docs\labs\html\$name.html `
# $fullName
}