Show HN: Typeform alternative, turns Markdown to forms
1–10 of 79 posts
Re: Show HN: Typeform alternative, turns Markdown to forms
#2Re: Show HN: Typeform alternative, turns Markdown to forms
#3Re: Show HN: Typeform alternative, turns Markdown to forms
#4It looks interesting. Do you not have a free plan or even a trial?
Re: Show HN: Typeform alternative, turns Markdown to forms
#5If 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
#6An actual Markdown syntax extension for forms would be interesting. [_____] for text fields?
Re: Show HN: Typeform alternative, turns Markdown to forms
#7This:
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
#8It 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
#9Re: Show HN: Typeform alternative, turns Markdown to forms
#10I 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.