This is a simpler approach:
http://lucarda.com.ar/x/manual/
Just changing the file “pdmanual.css”. CSS files are in charge of font
sizes, colors, etc.
Attached: “pdmanual.css”.
--
Mensaje telepatico asistido por maquinas.
On 10/4/2017 7:26 AM, [email protected] wrote:
>
> Some people try to write pd htlm documentation with a single file (pandoc) :
> https://github.com/pure-data/pure-data/pull/171
>
> I would like to suggest to make it easier/pleasant to read, and design some
> css selectors + responsive layouts. A first step to see if you are interested
> to go further : http://reso-nance.org/public/pd-doc/
>
> Here, I use a very nice and light css framework build by W3
> (https://www.w3schools.com/w3css/).
>
>
> Jérôme
>
>
>
> _______________________________________________
> [email protected] mailing list
> UNSUBSCRIBE and account-management ->
> https://lists.puredata.info/listinfo/pd-list
/* --------------- old code
HTML {
background: #ffffff;
color: #000000;
font-family: Times, Times New Roman, serif;
font-size: 10pt;
}
BODY {
width: 6.5in;
margin-left: 0.5in
}
H1 {
font-size: 36pt;
text-align: center;
}
H2 {
font-size: 10pt;
text-align: center;
}
H3 {
font-size: 12pt;
text-align: left;
}
H4 {
font-size: 10pt;
text-align: left;
}
H5 {
font-size: 8pt;
text-align: left;
}
H6 {
font-size: 8pt;
text-align: left;
}
PRE {
font-size: 8pt;
text-align: left;
}
--------------- end old code*/
HTML {
background: #ffffff;
color: #000000;
font-size: 10pt; /* this is because there are many </p> missing. We can change this value to 7pt to easy detect missing </p>*/
}
BODY {
width: 6.5in;
margin-left: 0.5in;
font-family: Verdana, Geneva, sans-serif;
}
H1 {
font-size: 30pt;
text-align: center;
}
H2 {
font-size: 20pt;
text-align: center;
}
H3 {
font-size: 12pt;
text-align: left;
}
H4 {
font-size: 10pt;
text-align: left;
}
H5 {
font-size: 8pt;
text-align: left;
}
H6 {
font-size: 8pt;
text-align: left;
}
PRE {
font-size: 105%;
background-color:rgb(240, 240, 240);
text-align: left;
}
ol{
font-size: 10.5pt;
text-align: left;
line-height: 1.6;
}
p{
font-size: 10pt;
text-align: left;
}
a:link {
text-decoration: underline;
color: black;
}
a:visited {
text-decoration: none;
color: black;
}
a:hover {
text-decoration: underline;
color: grey;
}
a:active {
text-decoration: underline;
color: black;
}
_______________________________________________
[email protected] mailing list
UNSUBSCRIBE and account-management ->
https://lists.puredata.info/listinfo/pd-list