Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add lexer for MediaWiki Wikitext #2373

Merged
merged 13 commits into from
Apr 5, 2023
Merged

Add lexer for MediaWiki Wikitext #2373

merged 13 commits into from
Apr 5, 2023

Commits on Mar 10, 2023

  1. Configuration menu
    Copy the full SHA
    afdc430 View commit details
    Browse the repository at this point in the history
  2. Add testings for Wikitext

    diskdance committed Mar 10, 2023
    Configuration menu
    Copy the full SHA
    e9c83a1 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2023

  1. Add credits in AUTHORS

    diskdance committed Mar 12, 2023
    Configuration menu
    Copy the full SHA
    5ffbe38 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b7dd84a View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2023

  1. Configuration menu
    Copy the full SHA
    139093f View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2023

  1. Handle {{int:}} as parser function

    It is actually a "transclusion modifier", but it should be OK to treat
    it as a parser function.
    diskdance committed Mar 15, 2023
    Configuration menu
    Copy the full SHA
    00c691b View commit details
    Browse the repository at this point in the history
  2. Improve test coverage

    diskdance committed Mar 15, 2023
    Configuration menu
    Copy the full SHA
    4fe3ce9 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2023

  1. Configuration menu
    Copy the full SHA
    f78ee09 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2023

  1. Seperate tag related regexes using states

    This workaround produces slightly different tokens without any visible
    difference. I have manully reviewed them to ensure I didn't introduce any bugs.
    diskdance committed Apr 2, 2023
    Configuration menu
    Copy the full SHA
    816763b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4ff0793 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2023

  1. Fix lint error

    I have no idea why it is complaining about (?s) usage, perhaps it's
    bugged, but I still fixed it by using [\s\S].
    diskdance committed Apr 5, 2023
    Configuration menu
    Copy the full SHA
    1509d5f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    52315be View commit details
    Browse the repository at this point in the history
  3. Add tvar legacy syntax

    I forgot about this. It still has some usage.
    diskdance committed Apr 5, 2023
    Configuration menu
    Copy the full SHA
    377b4a6 View commit details
    Browse the repository at this point in the history