All Projects → formtools → docs

formtools / docs

Licence: other
The Form Tools documentation.

Programming Languages

HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to docs

opencloud-docs
AIOT开放平台官方文档。AIOT Open Cloud documents on official website .
Stars: ✭ 68 (+353.33%)
Mutual labels:  docs
kata-platform-docs
Documentations for the Kata Platform.
Stars: ✭ 56 (+273.33%)
Mutual labels:  docs
jx-docs
Source code used to build the Jenkins X documentation and website
Stars: ✭ 86 (+473.33%)
Mutual labels:  docs
jsdoc-action
📖 GitHub Action to build JSDoc documentation
Stars: ✭ 61 (+306.67%)
Mutual labels:  docs
docs
Documentation site for LFE
Stars: ✭ 23 (+53.33%)
Mutual labels:  docs
verto-docs
Verto jQuery library documentation.
Stars: ✭ 49 (+226.67%)
Mutual labels:  docs
docs
Cucumber user documentation
Stars: ✭ 110 (+633.33%)
Mutual labels:  docs
cpeditor.github.io
The official website of CP Editor 📝
Stars: ✭ 17 (+13.33%)
Mutual labels:  docs
collective
How the unified collective is governed
Stars: ✭ 41 (+173.33%)
Mutual labels:  docs
resharper-devguide
Developer guide for the ReSharper Platform
Stars: ✭ 65 (+333.33%)
Mutual labels:  docs
yard-junk
Get rid of the junk in your YARD docs
Stars: ✭ 61 (+306.67%)
Mutual labels:  docs
thelounge.github.io
🌍 ‎ The official website for The Lounge
Stars: ✭ 33 (+120%)
Mutual labels:  docs
chm-documentation
chm documentation PostgreSQL pgadmin3 SQLAlchemy Django Flask jinja2 webpy doc chm compiled html help Postgres Postgre документация russian
Stars: ✭ 17 (+13.33%)
Mutual labels:  docs
docs
The documentation for Firefly III
Stars: ✭ 30 (+100%)
Mutual labels:  docs
nakama-docs
Documentation for Nakama social and realtime server.
Stars: ✭ 44 (+193.33%)
Mutual labels:  docs
fnd-docs
Foundation developer docs
Stars: ✭ 33 (+120%)
Mutual labels:  docs
awesome-docs
A curated list of awesome documentation tools
Stars: ✭ 163 (+986.67%)
Mutual labels:  docs
lunarvim.org
Website for LunarVim
Stars: ✭ 70 (+366.67%)
Mutual labels:  docs
native-testing-library-docs
🐳 Docs site for native-testing-library
Stars: ✭ 16 (+6.67%)
Mutual labels:  docs
flutter-docs-ptbr
Documentação do Flutter em pt-BR
Stars: ✭ 20 (+33.33%)
Mutual labels:  docs

Form Tools Documentation

This repo contains the Form Tools documentation for the upcoming Form Tools site, to be found at docs.formtools.org. It includes all documentation: the main userdoc, installation, upgrading instructions, module documentation and API.

We use Jekyll to handle generating the actual markup. Jekyll is a static website generator. In other words, rather than the web pages being constructed on the fly as people request them from the server, all the heavy lifting is done beforehand. The site is generated before being pushed to the server.

The new website + docs have lots of benefits:

  • Speed! - static files are far faster to load than the PHP/MySQL-heavy website right now.
  • Open! - now that the doc is in a public repo, it's super easy for people to contribute and fix documentation, unlike the old site where the doc is in a closed database.
  • more secure - the old Form Tools site has a whole bunch of different pieces of software running on it, and it's been hacked more than once.

Contributing

Fixes to the documentation and contributions are always welcome! You can contribute in two ways:

  1. Browse the documentation online and click the "EDIT PAGE" button when you find an error, or something you'd like to improve on. That will take you to github.com where you can edit the page right through your web browser.

  2. Clone the repository and build it locally. There, make your changes and submit a pull request. You might want to do this if you want to contribute a new tutorial, for example.

I manually review all contributions.

How to build locally

If you want to run the documentation locally, you'll need to do the following:

  1. Clone this repo.
  2. Install Jekyll via the instructions here
  3. Once it's been installed, open up your terminal/command line, navigate to the root folder of this repo and enter:
npm install 
npm install -g grunt-cli
  1. Next, start up the doc with grunt start (I need to run sudo grunt start myself).

That starts a local server which you can access at http://localhost:4000/docs/. At this point, you can edit the files locally and the HTML files will be automatically regenerated on the fly.

Page metadata

I'm current working on adding documentation search feature. In order for this to be as useful as possible, the pages can have these optional front-matter tags to provide additional metadata for the search.

versions: FT2
page_type: overview
categories: modules
tags: permissions,visualization

tags

Arbitrary strings to pinpoint what the page is about. This is as fine-grained as it gets and it's the only one of these metadata properties that actually visually appears in each documentation page. The user can click on the pills containing these names and it lets them perform searches to filter the results to pages sharing the same tags.

This list should be kept up to date. Current tags: permissions, views, fields, field_types, option_lists, validation, submissions, data_export, emails, filters, themes, modules, spam, email, security, deprecated, files, menus

versions

FT2 or FT3. Comma-delimited. If empty, it's assumed the page is relevant for any version of Form Tools. This value is used in searching only.

page_type

  • toc - table of contents (a list of links for the section)
  • introduction - an introduction/overview to a component / subject. A good starting point for something.

categories

Comma-delimited list of: core, userdoc, modules, themes, api, theme_development, module_development, tutorial, installation, upgrading, translations, basics, accounts, developer

These are presented in the search form to let you limit the results to a particular category.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].