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

Implementing the TiltYieldingFilter #28

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Mar 19, 2012

  1. Implementing the TiltYieldingFilter

    The purpose of this filter is to allow templates that adhere to the Tilt
    interface to yield to other templates. Basically, a yields-to chain is
    created where the templates sequentially yield to their predecessor in
    the list.
    
    For example, given the yields-to chain of [a,b,c] the filter will
    process this as a yields-to b and then b yields to c. This causes the
    following behavior:
      - c is processed by Tilt, call this c'
      - c' is given as the value of the yield in b
      - b is processed by Tilt, call this b'
      - b' is given as the value of the yield in a
      - a is processed by Tilt, call this a'
      - a' is written as the final output
    ethul committed Mar 19, 2012
    Copy the full SHA
    1348e12 View commit details
    Browse the repository at this point in the history