Upload files to "/"
This commit is contained in:
parent
58c637e051
commit
9519a2a0b5
@ -76,7 +76,7 @@ The basic structure of the output files is:
|
||||
|
||||
This bash script will scrape LTC meetings from their wordpress site at: https://www.londontransit.ca/agendas-and-minutes/
|
||||
|
||||
Attachments are downloaded as the HTML versions, converted to PDF. The original documents (linked from the agenda PDFs) may not always be OCRed, and the quality can be low.
|
||||
Attachments are downloaded as the HTML versions, converted to PDF. The original documents (linked from the agenda PDFs) may not always be OCRed, and the quality can be low. The HTML --> PDF conversion needs the template page included at `./template/default.html`.
|
||||
|
||||
The basic structure of the output files is:
|
||||
```
|
||||
|
||||
78
default.html
Normal file
78
default.html
Normal file
@ -0,0 +1,78 @@
|
||||
<meta charset="UTF-8">
|
||||
<style>
|
||||
body {
|
||||
width: 90%;
|
||||
min-width: 600px;
|
||||
position: relative;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
color: #666;
|
||||
font-size: 16px;
|
||||
font-family: Frutiger,"Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||
font-weight: 300;
|
||||
}
|
||||
strong {
|
||||
font-weight: 700;
|
||||
}
|
||||
p {
|
||||
color: #000000;
|
||||
}
|
||||
.h1, .h2, .h3, .h4, .h5, .h6, .post-teaser.featured .post-title, h1, h2, h3, h4, h5, h6 {
|
||||
font-family: Gnuolane,"Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||
font-weight: 700;
|
||||
line-height: 1.1;
|
||||
color: #087ac0;
|
||||
}
|
||||
|
||||
table {
|
||||
display: table;
|
||||
margin-bottom: 2em;
|
||||
min-width: 100%;
|
||||
border-spacing: 0;
|
||||
border-collapse: collapse;
|
||||
border-color: #ccc;
|
||||
background-color: transparent;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.table-responsive {
|
||||
overflow-x: auto;
|
||||
}
|
||||
table tbody {
|
||||
display: table-row-group;
|
||||
vertical-align: top;
|
||||
border-color: inherit;
|
||||
}
|
||||
table tbody > tr:nth-of-type(2n+1) {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
table tr {
|
||||
display: table-row;
|
||||
vertical-align: inherit;
|
||||
border-color: inherit;
|
||||
}
|
||||
table tbody > tr > td, table tbody > tr > th, table thead > tr > th {
|
||||
padding: 8px;
|
||||
border: 1px solid #ccc;
|
||||
vertical-align: top;
|
||||
}
|
||||
table td {
|
||||
display: table-cell;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
ol, ul {
|
||||
margin-top: 0;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
ol, ul {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
ol li {
|
||||
padding-left: 10px;
|
||||
}
|
||||
ol li, ul li {
|
||||
padding-bottom: 12px;
|
||||
}
|
||||
address, dd, dt, li, p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
</style>
|
||||
Loading…
Reference in New Issue
Block a user