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

Current development branch #35

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open

Current development branch #35

wants to merge 6 commits into from

Commits on Dec 9, 2022

  1. Configuration menu
    Copy the full SHA
    e3fd851 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dc9e635 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    533a408 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2022

  1. Part 2 - non-infectable slide behavior

    This grammar generation is still quite the mess but I have not found a
    better way yet... The parser size is now at 33MB but we have quite some
    odd cases here. Especially problematic is the nesting levels being
    coupled between the parent object of the slide and its contents.
    
    E.g.:
    
    ```norg
    -- :
       > this does not work because the outer list item is level 2, so the
         inner quote item also needs to be at least that level
    ```
    
    Also:
    
    ```norg
    > :
      --- this also does not work because allowing arbitrary nesting levels
          in here results in *absolutely frickin massive* parsers 😱
    ```
    
    I think we need to figure out a better way on how to deal with
    infectability if we want to implement this properly.
    mrossinek committed Dec 12, 2022
    Configuration menu
    Copy the full SHA
    a197e13 View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2022

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

Commits on Jan 1, 2023

  1. Define outputs for each system

    The last clause was overriding defaultPackage with its system-specific attributes
    completely.
    
    Instead of `nix build --impure .`, the impure making builtins.currentSystem available,
    users should now be able to simply `nix build .` and make the flake importable in pure
    contexts.
    pschyska authored and bandithedoge committed Jan 1, 2023
    Configuration menu
    Copy the full SHA
    d7a466e View commit details
    Browse the repository at this point in the history