Browse Source

docs: fix broken links; change onBrokenLinks to warning temporarily

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/6467/head
Raju Udava 1 year ago
parent
commit
ad76069f4d
  1. 9
      packages/noco-docs/docs/050.tables/020.create-table.md
  2. 2
      packages/noco-docs/docs/060.fields/010.fields-overview.md
  3. 2
      packages/noco-docs/docs/070.records/020.create-record.md
  4. 97
      packages/noco-docs/docusaurus.config.js

9
packages/noco-docs/docs/050.tables/020.create-table.md

@ -15,11 +15,10 @@ import TabItem from '@theme/TabItem';
### Related articles ### Related articles
- [Create table via import](/docs/tables/create-table-via-import) - [Create table via import](/tables/create-table-via-import)
- [Delete table](/docs/tables/delete-table) - [Delete table](/tables/delete-table)
- [Rename table](/docs/tables/rename-table) - [Rename table](/tables/actions-on-table#rename-table)
- [Duplicate table](/docs/tables/duplicate-table) - [Duplicate table](/tables/actions-on-table#duplicate-table)
- [Change table icon](/docs/tables/change-table-icon)

2
packages/noco-docs/docs/060.fields/010.fields-overview.md

@ -48,7 +48,7 @@ import TabItem from '@theme/TabItem';
### Formula ### Formula
- [Formula](field-types/formula/formula) - [Formula](field-types/formula/formula)
- [Operators](field-types/formula/operators) - [Operators](field-types/formula/operators)
- [Numeric Functions](field-types/formula/numberic-functions) - [Numeric Functions](field-types/formula/numeric-functions)
- [String Functions](field-types/formula/string-functions) - [String Functions](field-types/formula/string-functions)
- [Date Functions](field-types/formula/date-functions) - [Date Functions](field-types/formula/date-functions)
- [Conditional Expressions](field-types/formula/conditional-expressions) - [Conditional Expressions](field-types/formula/conditional-expressions)

2
packages/noco-docs/docs/070.records/020.create-record.md

@ -25,6 +25,6 @@ To revert back to default behaviour of `+ New Record` button, click on the up-ar
::: :::
### Related topics ### Related topics
- [Expanded record view](/records/expanded-record-view) - [Expanded record view](/records/expanded-record)

97
packages/noco-docs/docusaurus.config.js

@ -1,61 +1,62 @@
// @ts-check // @ts-check
// Note: type annotations allow type checking and IDEs autocompletion // Note: type annotations allow type checking and IDEs autocompletion
const lightCodeTheme = require('prism-react-renderer/themes/github'); const lightCodeTheme = require("prism-react-renderer/themes/github");
const darkCodeTheme = require('prism-react-renderer/themes/dracula'); const darkCodeTheme = require("prism-react-renderer/themes/dracula");
/** @type {import('@docusaurus/types').Config} */ /** @type {import('@docusaurus/types').Config} */
const config = { const config = {
title: 'NocoDB', title: "NocoDB",
tagline: 'The Open Source Airtable Alternative', tagline: "The Open Source Airtable Alternative",
favicon: 'img/favicon.ico', favicon: "img/favicon.ico",
// Set the production url of your site here // Set the production url of your site here
url: 'https://nocodb.com', url: "https://nocodb.com",
// Set the /<baseUrl>/ pathname under which your site is served // Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/' // For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/', baseUrl: "/",
// GitHub pages deployment config. // GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these. // If you aren't using GitHub pages, you don't need these.
organizationName: 'nocodb', // Usually your GitHub org/user name. organizationName: "nocodb", // Usually your GitHub org/user name.
projectName: 'nocodb', // Usually your repo name. projectName: "nocodb", // Usually your repo name.
onBrokenLinks: 'throw', onBrokenLinks: "warn",
onBrokenMarkdownLinks: 'warn', onBrokenMarkdownLinks: "warn",
// Even if you don't use internalization, you can use this field to set useful // Even if you don't use internalization, you can use this field to set useful
// metadata like html lang. For example, if your site is Chinese, you may want // metadata like html lang. For example, if your site is Chinese, you may want
// to replace "en" with "zh-Hans". // to replace "en" with "zh-Hans".
i18n: { i18n: {
defaultLocale: 'en', defaultLocale: "en",
locales: ['en'], locales: ["en"],
}, },
plugins: ['docusaurus-plugin-sass'], plugins: ["docusaurus-plugin-sass"],
presets: [ presets: [
[ [
'classic', "classic",
/** @type {import('@docusaurus/preset-classic').Options} */ /** @type {import('@docusaurus/preset-classic').Options} */
({ ({
docs: { docs: {
sidebarPath: require.resolve('./sidebars.js'), sidebarPath: require.resolve("./sidebars.js"),
routeBasePath: '/', routeBasePath: "/",
editUrl: 'https://github.com/nocodb/nocodb/tree/develop/packages/noco-docs/docs/', editUrl:
lastVersion: 'current', "https://github.com/nocodb/nocodb/tree/develop/packages/noco-docs/docs/",
lastVersion: "current",
versions: { versions: {
current: { current: {
label: 'Latest', label: "Latest",
},
"0.109.7": {
label: "0.109.7 - Old UI",
}, },
'0.109.7': {
label: '0.109.7 - Old UI',
}
}, },
}, },
blog: false, blog: false,
theme: { theme: {
customCss: require.resolve('./src/css/custom.scss'), customCss: require.resolve("./src/css/custom.scss"),
}, },
}), }),
], ],
@ -65,54 +66,54 @@ const config = {
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */ /** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({ ({
// Replace with your project's social card // Replace with your project's social card
image: 'img/docusaurus-social-card.jpg', image: "img/docusaurus-social-card.jpg",
navbar: { navbar: {
title: '', title: "",
logo: { logo: {
alt: 'NocoDB', alt: "NocoDB",
src: 'img/nocodb-full-color.png', src: "img/nocodb-full-color.png",
}, },
items: [ items: [
{ {
type: 'docsVersionDropdown', type: "docsVersionDropdown",
position: 'right', position: "right",
}, },
{ {
href: 'https://github.com/nocodb/nocodb', href: "https://github.com/nocodb/nocodb",
position: 'right', position: "right",
className: 'header-github-link', className: "header-github-link",
'aria-label': 'GitHub repository', "aria-label": "GitHub repository",
}, },
], ],
}, },
footer: { footer: {
style: 'dark', style: "dark",
logo: { logo: {
alt: 'NocoDB', alt: "NocoDB",
src: 'img/icon.png', src: "img/icon.png",
width: 50, width: 50,
}, },
links: [ links: [
{ {
label: 'GitHub', label: "GitHub",
href: 'https://github.com/facebook/docusaurus', href: "https://github.com/facebook/docusaurus",
}, },
{ {
label: 'Website', label: "Website",
href: 'https://nocodb.com/', href: "https://nocodb.com/",
}, },
{ {
label: 'Community', label: "Community",
href: 'https://community.nocodb.com/', href: "https://community.nocodb.com/",
}, },
{ {
label: 'Discord', label: "Discord",
href: 'https://discord.gg/5RgZmkW', href: "https://discord.gg/5RgZmkW",
}, },
{ {
label: 'Twitter', label: "Twitter",
href: 'https://twitter.com/nocodb', href: "https://twitter.com/nocodb",
} },
], ],
copyright: `Copyright © ${new Date().getFullYear()} NocoDB`, copyright: `Copyright © ${new Date().getFullYear()} NocoDB`,
}, },

Loading…
Cancel
Save