Update README.md

Added yaml metadata and corrected formatting
This commit is contained in:
Hugo Bernier 2020-04-26 15:05:14 -04:00 committed by GitHub
parent 0f13b091ed
commit 9f8b90bdc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 35 additions and 21 deletions

View File

@ -1,17 +1,29 @@
## SharePoint Framework Faq App
---
page_type: sample
products:
- office-sp
languages:
- javascript
- typescript
extensions:
contentType: samples
technologies:
- SharePoint Framework
platforms:
- react
createdDate: 04/25/2017 12:00:00 AM
---
# SharePoint Framework Faq App
## Summary
- This Web Part allows users to create Frequently Asked Questions(Faq App) in modern and classic SharePoint pages.
- This webpart allows to search within questions and answers which are stored in a SharePoint FAQ list.
- "React-autosuggest and react-accessible-accordion" react packages are used for the search and accordion control.
<p align="center">
<img src="./assets/FAQWebpart.png"/>
</p>
![Web part preview](assets/FAQWebpart.png)
## Used SharePoint Framework Version
![drop](https://img.shields.io/badge/drop-1.8.2-green.svg)
![1.8.2](https://img.shields.io/badge/drop-1.8.2-green.svg)
## Applies to
@ -36,32 +48,34 @@ Version|Date|Comments
## Minimal Path to Awesome
- git clone the repo
- npm i
- npm i -g gulp
- gulp serve
- `git clone` the repo
- `npm i`
- `npm i -g gulp`
- `gulp serve`
#### Local Mode
A browser in local mode (localhost) will be opened.
https://localhost:4321/temp/workbench.html
`https://localhost:4321/temp/workbench.html`
#### SharePoint Mode
If you want to try on a real environment, open:
https://your-domain.sharepoint.com/_layouts/15/workbench.aspx
`https://[your-domain].sharepoint.com/_layouts/15/workbench.aspx`
## Usage
- Create a FAQ List in SharePoint.
- Create the below fields:
- Title field can be considered as "Question" field.
- Column Name Field Type
- Title Single line of text
- Answer Multiple lines of text
- Category Single line of text
- CategorySortOrder Number
- QuestionSortOrder Number
- `Title` field can be considered as "Question" field.
Column Name|Field Type
-------|----
`Title`|Single line of text
`Answer`|Multiple lines of text
`Category`|Single line of text
`CategorySortOrder`|Number
`QuestionSortOrder`|Number
- Edit the webpart, set the the ListName in the property pane
- Edit the webpart, set the the **ListName** in the property pane
## Features