summary refs log tree commit diff stats
path: root/lib/packages/docutils/highlite.nim
Commit message (Expand)AuthorAgeFilesLines
* related #22534; fixes documentation rendering of custom number literal routin...Erich Reitz2023-12-011-11/+12
* complete std prefixes for stdlib (#22887)ringabout2023-10-301-2/+2
* fixes #21232; highlite.getNextToken() returns gtOperator for '/' in C (#21234)ringabout2023-01-081-0/+3
* fixes #20526; use `nimPreviewSlimSystem` for documentation build (#20714)ringabout2022-11-011-1/+1
* Markdown code blocks migration part 7 (#20547)Andrey Makarov2022-10-121-6/+7
* bootstrap the compiler with nimPreviewSlimSystem (#20176)ringabout2022-08-091-0/+4
* Improve Markdown code blocks & start moving docs to Markdown style (#19954)Andrey Makarov2022-07-151-3/+1
* remove isKeywordIgnoreCase from highlite, not used , can't even compile with ...Bung2021-06-301-3/+0
* follow-up #17837: add `Console` for interactive sessions (#17930)Andrey Makarov2021-05-061-8/+28
* highlite: fix #17890 - tokenize Nim escape seq-s (#17919)Andrey Makarov2021-05-031-19/+33
* add RST highlighting for command line / shells (also fixes #16858) (#17789)Andrey Makarov2021-04-211-4/+79
* further progress on rst roles & directives (fix #17646) (#17659)Andrey Makarov2021-04-081-2/+2
* remove docutils.nimble (not a real nimble package, and affected canonical imp...Timothee Cour2021-03-291-2/+0
* Use readable escape sequences (#17241)Clyybber2021-03-031-51/+51
* Replace double backticks with single backticks - Part 4 out of ~7 (#17216)Danil Yarantsev2021-03-011-2/+2
* fix some warnings (#16952)flywind2021-02-081-1/+1
* Added Python to highlite module. (#16286)Xabier Bello2020-12-081-14/+30
* Remove unroll pragma from stdlib (#14706)Juan Carlos2020-08-261-4/+0
* fixes #14830Araq2020-07-061-1/+1
* styleCheck: make the compiler and large parts of the stdlib compatible with -...Araq2019-07-101-2/+2
* Documentation highlite (#11596)Juan Carlos2019-06-261-0/+27
* document proper imports, fixes #8164 (#10698)Miran2019-02-191-0/+2
* make highlite.nim compile againAraq2018-08-231-1/+1
* Multi byte characters should not be treated as part of an operatorOscar NihlgÄrd2018-06-031-1/+1
* Use new binarySearch everywhere (#7876)Dmitry Atamanov2018-05-251-24/+3
* the documentation generator now supports ':test:' for the testing of test sni...Araq2017-11-281-6/+3
* language change: 'generic' and 'atomic' are not keywords anymoreAndreas Rumpf2017-11-211-6/+5
* 'with' and 'without' are not keywords anymoreAraq2017-09-301-2/+2
* fixes #3078Andreas Rumpf2016-10-201-6/+9
* Fixes to YAML highlighting support, added testsFelix Krause2016-04-011-7/+18
* Added YAML support to doctools/highliteFelix Krause2016-03-291-2/+296
* use 'using' instead of 'sig' keyword; cleans up new features a bitAndreas Rumpf2016-02-291-1/+1
* added 'sig' feature; removed tfShared support in the compilerAndreas Rumpf2016-02-281-1/+1
* implements final version of multiline commentsAndreas Rumpf2016-01-171-11/+30
* implements multi-line-comments; pounds are stripped from the doc commentsAndreas Rumpf2016-01-161-1/+16
* lib/packages/docutils - Dropped 'T' from typespdw2015-06-041-29/+32
* breaking change: 'concept' is now a keyword and used instead of 'generic'Araq2015-03-231-222/+224
* destuctors are experimental; 'func' is now a keywordAraq2014-12-101-1/+2
* implements 'defer'Araq2014-12-041-2/+3
* support nimrod as an alias for nim for compatibility (nimforum!)Araq2014-09-171-4/+4
* renamefestAraq2014-08-231-1/+1
* the big renamefest: first stepsAraq2014-08-221-9/+9
* 'lambda' is no keyword anymoreAraq2014-08-081-1/+1
* new concurrency model: first steps; shared is not a keyword anymoreAraq2014-04-141-2/+4
* added an overload for highlight.initGeneralTokenizer that accepts a cstring.Charlie Barto2014-02-261-3/+4
* Punctation -> punctuation.EXetoC2014-01-291-4/+4
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-2/+2
* case consistency: next stepsAraq2013-12-291-1/+1
* case consistency part 4Araq2013-12-271-3/+3
* bugfix: keywords are sortedAraq2013-12-051-1/+1
a> 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 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747