about summary refs log tree commit diff stats
path: root/src/html/parser.nim
Commit message (Collapse)AuthorAgeFilesLines
* Some loader polishingbptato2022-02-091-1/+10
|
* parse_tag: fix html entities in valuesbptato2022-02-081-1/+1
|
* Implement formsbptato2022-01-291-3/+20
| | | | | | Note: for now, only input tags are supported. Also the implementation is extremely hacky and needs refactoring... But it works, I think.
* Implement text-align and <center>bptato2022-01-291-2/+2
|
* Fix stylesheet containment bugbptato2022-01-251-8/+2
|
* Optimize cascading algorithmbptato2022-01-241-0/+7
|
* Fix head parsingbptato2022-01-241-1/+1
|
* Infer that we're in document body for textbptato2022-01-231-4/+6
|
* Support external stylesheetsbptato2022-01-231-0/+3
|
* Fix page navigationbptato2022-01-221-2/+3
|
* Implement basics of new layout enginebptato2022-01-181-0/+1
|
* Honestly I'm not sure what I added here...bptato2021-12-211-28/+36
|
* Fix html parser bugsbptato2021-12-191-6/+7
|
* Preparation for at rules, small inline-block fixbptato2021-12-191-2/+2
|
* Refactor selector code, optimize style tagsbptato2021-12-181-10/+20
|
* More code formatting consistencybptato2021-12-171-1/+1
|
* Some parser fixesbptato2021-12-151-11/+13
|
* Refactor enumsbptato2021-12-151-2/+1
|
* Add lists, function selector fixesbptato2021-12-141-17/+25
|
* Support inline style attributesbptato2021-12-101-10/+10
|
* Support CSS next- and subsequent sibling combinatorsbptato2021-11-231-6/+6
|
* Fix some whitespace bugsbptato2021-11-151-11/+7
|
* Colors, italic, bold, read from pipebptato2021-11-121-4/+7
|
* Layout engine improvements, use author style sheetbptato2021-11-101-3/+11
|
* Display & when escape cmd parsing failsbptato2021-11-081-4/+4
|
* Minor changesbptato2021-08-161-6/+0
|
* Get rid of some old code, work on css property handlingbptato2021-08-111-2/+0
|
* Reorganize importsbptato2021-08-071-0/+457
href='#n454'>454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563