简单形式的Wiki或Markdown语法? [英] Wiki or Markdown-like syntax for simple forms?

查看:124
本文介绍了简单形式的Wiki或Markdown语法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有任何类似于 Markdown

Is there any simple language similar to Markdown or one of the Wiki Markups that gets converted into HTML form elements?

例如:

name* = ___________
sex = (x) Male () Female
phones = [] Android [x] iPhone [] Blackberry
city = {BOS, (SFO), NYC}

将被转换为:

<label>Name (required):</label><input type="text" name="name" id="name"/>
<label>Sex:</label><input type="radio" name="sex" value="Male" checked="checked"/> <input type="radio" name="sex" value="Female"/>
<label>Phones:</label><input type="check" name="phones" value="Android"/> <input type="check" name="phones" value="iPhone" checked="checked"/> <input type="check" name="phones" value="Blackberry"/>
<label>City:</label> 
<select name="city">
  <option value="BOS">BOS</option>
  <option value="SFO" selected="selected">SFO</option>
  <option value="NYC">NYC</option>
</select>

创建一个我自己很简单,但是如果任何现有的库/语言已经支持它,那将为我节省一些实现,文档和维护的时间.如果该库以Java(这样我们可以在服务器端运行)或JavaScript(这样我们可以在客户端运行)工作,那将是更好的选择.

It would be simple to create one myself, but if any existing library/language supports it already, it would save me some time in implementation, documentation and maintenance. It would be preferable if the library worked either in Java (so we could run it server-side) or JavaScript (so we could run it client-side).

更新:为此,我创建了一个 github项目 maleldil 实现了它.随时尝试一下

Update: I created a github project for this and maleldil implemented it. Feel free to try it out!

推荐答案

我无法找到适合我需要的库,因此我分叉了WMD项目(SO将其用于Markdown语法突出显示)并放入在Github上 上进行项目.我没有时间来实现它,但是 maleldil 可以自己完成,所以

I have not been able to find a library that suits my needs, so I forked the WMD project (which SO uses for its Markdown syntax highlighting) and put the project on on Github. I didn't have time to implement it, but maleldil kindly did it himself, so try it out!

这篇关于简单形式的Wiki或Markdown语法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆