Skip to content

Commit 67976d5

Browse files
Update feature description in readme
1 parent 653e693 commit 67976d5

3 files changed

Lines changed: 50 additions & 42 deletions

File tree

.gitignore

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
config.codekit
2-
.codekit-cache
3-
plugin-deploy.sh
4-
5-
# OS generated files #
6-
######################
7-
.DS_Store
8-
.DS_Store?
9-
._*
10-
.Spotlight-V100
11-
.Trashes
12-
ehthumbs.db
13-
Thumbs.db
14-
/node_modules
15-
/vendor/
16-
17-
.vscode/
18-
.idea/
19-
wedocs*.zip
1+
config.codekit
2+
.codekit-cache
3+
plugin-deploy.sh
4+
5+
# OS generated files #
6+
######################
7+
.DS_Store
8+
.DS_Store?
9+
._*
10+
.Spotlight-V100
11+
.Trashes
12+
ehthumbs.db
13+
Thumbs.db
14+
/node_modules
15+
/vendor/
16+
17+
.vscode/
18+
.idea/
19+
wedocs*.zip

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ Create beautiful docs, structure them neatly, and boost engagement, all from one
5454

5555
The free version of weDocs provides a solid foundation for building a professional knowledge base. It includes:
5656

57+
– **[Full Gutenberg Support](https://wedocs.co/docs/wedocs/full-site-editing/
58+
)**: Design and customize your documentation using Gutenberg blocks with complete flexibility.
59+
5760
– **User-friendly Interface:** Clean and intuitive dashboard for creating and managing documentation without technical complexity.
5861

5962
– **Unlimited Document Creation:** Create unlimited documents and knowledge bases for any product, service, or business.
@@ -80,7 +83,7 @@ The free version of weDocs provides a solid foundation for building a profession
8083

8184
– **[Quick Search on Documentation](https://wedocs.co/docs/wedocs/how-to/quick-search-option/)**: AJAX-powered in-document search for fast navigation.
8285

83-
– **[AI Doc Writer](https://wedocs.co/docs/wedocs/how-to/ai-doc-writer/)**: Automatically generates helpful documentation from your prompts or product details.
86+
– **[AI Doc Writer with Image Analysis](https://wedocs.co/docs/wedocs/how-to/ai-doc-writer/)**: Generate documentation from prompts, product details, or even screenshots. Turn visuals into structured docs instantly.
8487

8588
---
8689

tailwind.config.js

Lines changed: 27 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,27 @@
1-
/** @type {import('tailwindcss').Config} */
2-
import {
3-
scopedPreflightStyles,
4-
isolateInsideOfContainer,
5-
} from 'tailwindcss-scoped-preflight';
6-
7-
const rootClass = '.wedocs-document'; //We will use this class to scope the styles.
8-
9-
module.exports = {
10-
important: rootClass,
11-
content: [ './templates/*.php', './templates/**/*.php', './src/**/*' ],
12-
theme: {
13-
extend: {},
14-
},
15-
plugins: [
16-
scopedPreflightStyles( {
17-
isolationStrategy: isolateInsideOfContainer( rootClass, {} ),
18-
} ),
19-
require( 'daisyui' ),
20-
require( '@tailwindcss/forms' )
21-
],
22-
};
1+
/** @type {import('tailwindcss').Config} */
2+
import {
3+
import { createRequire } from 'module';
4+
5+
const require = createRequire(import.meta.url);
6+
7+
scopedPreflightStyles,
8+
isolateInsideOfContainer,
9+
} from 'tailwindcss-scoped-preflight';
10+
11+
const rootClass = '.wedocs-document'; //We will use this class to scope the styles.
12+
13+
module.exports = {
14+
important: rootClass,
15+
content: [ './templates/*.php', './templates/**/*.php', './src/**/*' ],
16+
theme: {
17+
extend: {},
18+
},
19+
plugins: [
20+
scopedPreflightStyles( {
21+
isolationStrategy: isolateInsideOfContainer( rootClass, {} ),
22+
} ),
23+
require( 'daisyui' ),
24+
require( '@tailwindcss/forms' )
25+
],
26+
};
27+

0 commit comments

Comments
 (0)