summary refs log tree commit diff stats
path: root/nimdoc/testproject/expected
Commit message (Collapse)AuthorAgeFilesLines
* fixes #10857 invisible span had width (#10860)Anthon van der Neut2019-03-193-12/+24
|
* documentation style tweaks (#10790)Miran2019-03-083-9/+9
| | | | | | | * exports are the least important field in the docs: they are put in the last place (at the bottom) * indent text after proc/type declaration for an easier navigation (noticeable difference between declarations and examples) * quickfix invalid style in `asynchttpserver`
* fix documentation CSSnarimiran2019-02-053-48/+84
| | | | | | - make documentation usable on small (narrow) screens - slightly smaller font size in tables - fix search input width
* update documentation CSS (#10543)Miran2019-02-043-2028/+693
| | | | | * update documentation CSS * update the expected htmls
* change the expected output of nim docnarimiran2019-01-283-15/+6
|
* docgen: do not produce trailing commas for linksAraq2019-01-253-20/+20
|
* docgen: produce links for proc namesAraq2019-01-252-8/+8
|
* RST parser: fixes #8158Araq2019-01-111-1/+8
|
* docgen: support markdown headings tooAraq2019-01-112-3/+13
|
* docgen: support markdown link syntax; enable markdown extensionsAraq2019-01-111-1/+1
|
* Change documentation details (closes #5525) (#9542)Miran2018-10-312-4/+4
|
* docgen: fixes #9432 [backport]Araq2018-10-313-1/+110
|
* Do not encode the anchors in docs (`id` attr in `a` tags) (#9261)Kaushal Modi2018-10-092-4/+4
| | | | | Update the tests too. Fixes https://github.com/nim-lang/Nim/issues/9232.
* Make "koch docs" copy the dochack.js to the right location tooKaushal Modi2018-09-293-3/+3
| | | | | | | | | | - Fixes https://github.com/nim-lang/Nim/issues/9104. - Fixes https://github.com/nim-lang/Nim/issues/9095. Expect dochack.js to be fetched from the doc/html/ dir instead of from doc/. Also remove an unused and unexported proc pathPart.
* Don't prevent ',' from getting escaped in theindex.htmlKaushal Modi2018-09-281-4/+4
| | | | | | - Enable escaping of links in theindex.html - Fixes https://github.com/nim-lang/Nim/issues/9107. - Second part of the fix for https://github.com/nim-lang/Nim/issues/9097.
* Encode non-alphanum chars like %, + in URLs in the docsKaushal Modi2018-09-282-10/+16
| | | | | | | | | | | | | Use $itemSymOrIDEnc instead of $itemSymOrID in the id and href attr in a tags. Fixes https://github.com/nim-lang/Nim/issues/9097. Thanks to @LemonBoy for helping with this commit. --- Update the tests too -- "nim c -r nimdoc/tester" passes.
* Revert #7964LemonBoy2018-09-212-1/+23
| | | | | | | Somehow the test case doesn't crash anymore and the regression in the doc generation is fixed. Fixes #9019
* make documentation generator tests green againAraq2018-09-132-4/+9
|
* index generation for docgen knows about subdirectories; index knows about ↵Araq2018-09-131-0/+1266
| | | | enum values; fixes import statement for runnableExamples
* added a test for 'nim doc'Andreas Rumpf2018-09-072-0/+2630
id='n434' href='#n434'>434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 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 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703