├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── image.png ├── pages ├── http:__info.cern.ch_hypertext_WWW_.._DataSources_WWW_Servers.html ├── http:__info.cern.ch_hypertext_WWW_Administration_Mailing_Overview.html ├── http:__info.cern.ch_hypertext_WWW_WhatIs.html ├── motherfuckingwebsite.html ├── project.html └── project2.html ├── src ├── dom.rs ├── html.pest ├── html.rs ├── main.rs ├── parser.rs ├── rendering.rs └── styling.rs ├── tnr.ttf └── tnrb.ttf /.gitignore: -------------------------------------------------------------------------------- 1 | target/ -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/README.md -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/image.png -------------------------------------------------------------------------------- /pages/http:__info.cern.ch_hypertext_WWW_.._DataSources_WWW_Servers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/pages/http:__info.cern.ch_hypertext_WWW_.._DataSources_WWW_Servers.html -------------------------------------------------------------------------------- /pages/http:__info.cern.ch_hypertext_WWW_Administration_Mailing_Overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/pages/http:__info.cern.ch_hypertext_WWW_Administration_Mailing_Overview.html -------------------------------------------------------------------------------- /pages/http:__info.cern.ch_hypertext_WWW_WhatIs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/pages/http:__info.cern.ch_hypertext_WWW_WhatIs.html -------------------------------------------------------------------------------- /pages/motherfuckingwebsite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/pages/motherfuckingwebsite.html -------------------------------------------------------------------------------- /pages/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/pages/project.html -------------------------------------------------------------------------------- /pages/project2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/pages/project2.html -------------------------------------------------------------------------------- /src/dom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/src/dom.rs -------------------------------------------------------------------------------- /src/html.pest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/src/html.pest -------------------------------------------------------------------------------- /src/html.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/src/html.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/src/parser.rs -------------------------------------------------------------------------------- /src/rendering.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/src/rendering.rs -------------------------------------------------------------------------------- /src/styling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/src/styling.rs -------------------------------------------------------------------------------- /tnr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/tnr.ttf -------------------------------------------------------------------------------- /tnrb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpaylan/kale/HEAD/tnrb.ttf --------------------------------------------------------------------------------