Live data from Hacker News

Show HN: Typeform alternative, turns Markdown to forms

blocks.md

1–10 of 79 posts

Re: Show HN: Typeform alternative, turns Markdown to forms

#5
This style of form is aggravating to fill out, but kudos on making it beautiful.

If you want to be kind to your users, allow them to scroll through the entire form, see it on one screen and ideally skip ahead without filling out required options but block submission.

Re: Show HN: Typeform alternative, turns Markdown to forms

#7
It looks like it could be made leaner.

This:

    name* = TextInput(
        | question = What is your name?
        | description = 
          Let's get started with the survey. First, please tell
          us your full legal name according to your passport.
    )
Could be just this:

    name* = TextInput
        # What is your name?
        Let's get started with the survey. First, please tell
        us your full legal name according to your passport.

Re: Show HN: Typeform alternative, turns Markdown to forms

#8
post #7

It looks like it could be made leaner. This: name* = TextInput( | question = What is your name? | description = Let's get started with the survey. First, please tell us your full legal name according to your passport. ) Could be just this: name* = TextInput # What is your name? Let's get started with the survey. First, please tell us your full legal name according to your passport.

But then how would you support choices or conditions for example?

Re: Show HN: Typeform alternative, turns Markdown to forms

#10

I feel like this falls into an uncanny valley between requiring the skill to cognitively model forms in your mind as text, which is fairly close to coding and using a form builder UI.

Yeah, it'd be great if over time they/a community provided a system for visualizing the form logic and a form builder GUI so you can go full-circle with this (building via code and GUI and saving/versioning/forking forms via source).
Post reply on HN