UPDATE: Documents reorganization and some additions
This commit is contained in:
committed by
Nicolás Hatcher Andrés
parent
97846041e5
commit
48afb45eb9
@@ -38,63 +38,93 @@ export default defineConfig({
|
||||
|
||||
sidebar: [
|
||||
{ text: "About IronCalc", link: "/index.md" },
|
||||
{
|
||||
text: "Web Application",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{ text: "About the web application", link: "/web-application/about" },
|
||||
{ text: "Importing Files", link: "/web-application/importing-files" },
|
||||
{ text: "Sharing Files", link: "/web-application/sharing-files" },
|
||||
],
|
||||
},
|
||||
{
|
||||
text: "Features",
|
||||
collapsed: false,
|
||||
collapsed: true,
|
||||
items: [
|
||||
{ text: "Formatting Values", link: "/features/formatting-values" },
|
||||
{ text: "Using Styles", link: "/features/using-styles" },
|
||||
{ text: "Keyboard Shortcuts", link: "/features/keyboard-shortcuts" },
|
||||
{ text: "Importing Files", link: "/features/importing-files" },
|
||||
{
|
||||
text: "Error Types",
|
||||
link: "/features/error-types",
|
||||
},
|
||||
{ text: "Unsupported Features", link: "/features/unsupported-features" },
|
||||
],
|
||||
},
|
||||
{
|
||||
text: "Functions",
|
||||
collapsed: false,
|
||||
collapsed: true,
|
||||
items: [
|
||||
{ text: "Database", link: "functions/database" },
|
||||
{ text: "Date and Time", link: "functions/date-and-time" },
|
||||
{ text: "Engineering", link: "functions/engineering" },
|
||||
{ text: "Database", link: "/functions/database" },
|
||||
{ text: "Date and Time", link: "/functions/date-and-time" },
|
||||
{ text: "Engineering", link: "/functions/engineering" },
|
||||
{
|
||||
text: "Financial",
|
||||
collapsed: true,
|
||||
link: "functions/financial",
|
||||
items: [{ text: "FV", link: "functions/financial/FV" }],
|
||||
link: "/functions/financial",
|
||||
items: [{ text: "FV", link: "/functions/financial/fv" }],
|
||||
},
|
||||
{ text: "Information", link: "functions/information" },
|
||||
{ text: "Logical", link: "functions/logical" },
|
||||
{ text: "Information", link: "/functions/information" },
|
||||
{ text: "Logical", link: "/functions/logical" },
|
||||
{
|
||||
text: "Lookup and Reference",
|
||||
link: "functions/lookup-and-reference",
|
||||
link: "/functions/lookup-and-reference",
|
||||
},
|
||||
{
|
||||
text: "Math and Trigonometry",
|
||||
link: "functions/math-and-trigonometry",
|
||||
link: "/functions/math-and-trigonometry",
|
||||
},
|
||||
{ text: "Statistical", link: "functions/statistical" },
|
||||
{ text: "Text", link: "functions/text" },
|
||||
{ text: "Statistical", link: "/functions/statistical" },
|
||||
{ text: "Text", link: "/functions/text" },
|
||||
],
|
||||
},
|
||||
{
|
||||
text: "Python bindings",
|
||||
text: "Programming",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
text: "Practical Guide",
|
||||
link: "python-bindings/python-bindings-practical-guide",
|
||||
text: "Rust",
|
||||
link: "/programming/rust",
|
||||
},
|
||||
{
|
||||
text: "Python",
|
||||
link: "/programming/python-bindings",
|
||||
},
|
||||
{
|
||||
text: "JavScript",
|
||||
link: "/programming/javascript-bindings",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
text: "More",
|
||||
text: "TUI Application: Tironcalc",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{ text: "Unsupported Features", link: "more/unsupported-features" },
|
||||
{ text: "How to contribute", link: "more/how-to-contribute" },
|
||||
{
|
||||
text: "Understanding Error Types",
|
||||
link: "more/understanding-error-types",
|
||||
text: "About Tironcalc",
|
||||
link: "/tironcalc/about",
|
||||
},
|
||||
{
|
||||
text: "Installing and basic usage",
|
||||
link: "/tironcalc/installing",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
text: "Contributing",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{ text: "How to contribute", link: "/contributing/how-to-contribute" },
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
@@ -4,7 +4,7 @@ outline: deep
|
||||
lang: en-US
|
||||
---
|
||||
|
||||
# Understanding Excel Error Types
|
||||
# Error Types
|
||||
|
||||
::: warning
|
||||
**Note:** This page is in construction 🚧
|
||||
@@ -66,6 +66,13 @@ When working with formulas, you may encounter these common errors:
|
||||
**Cause:** Incorrect range operator in a formula (e.g., missing a colon between cell references).
|
||||
**Fix:** Use correct range operators (e.g., A1:A10).
|
||||
|
||||
|
||||
### **`#CIRC!`**
|
||||
|
||||
**Cause:** Circular reference.
|
||||
**Fix:** Remove the circular reference.
|
||||
|
||||
|
||||
### **`#####`**
|
||||
|
||||
**Cause:** The column isn’t wide enough to display the value.
|
||||
@@ -3,25 +3,25 @@
|
||||
layout: doc
|
||||
outline: deep
|
||||
|
||||
hero:
|
||||
name: "IronCalc Documentation"
|
||||
text: "The documentation of IronCalc"
|
||||
tagline: My great project tagline
|
||||
actions:
|
||||
- theme: brand
|
||||
text: Markdown Examples
|
||||
link: /features/markdown-examples
|
||||
- theme: alt
|
||||
text: API Examples
|
||||
link: /features/api-examples
|
||||
# hero:
|
||||
# name: "IronCalc Documentation"
|
||||
# text: "The documentation of IronCalc"
|
||||
# tagline: My great project tagline
|
||||
# actions:
|
||||
# - theme: brand
|
||||
# text: Markdown Examples
|
||||
# link: /features/markdown-examples
|
||||
# - theme: alt
|
||||
# text: API Examples
|
||||
# link: /features/api-examples
|
||||
|
||||
features:
|
||||
- title: Feature A
|
||||
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
- title: Feature B
|
||||
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
- title: Feature C
|
||||
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
# features:
|
||||
# - title: Feature A
|
||||
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
# - title: Feature B
|
||||
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
# - title: Feature C
|
||||
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
---
|
||||
|
||||
# About IronCalc
|
||||
|
||||
@@ -4,7 +4,7 @@ outline: deep
|
||||
lang: en-US
|
||||
---
|
||||
|
||||
# Python Bindings, a practical guide
|
||||
# JavaScript Bindings
|
||||
|
||||
::: warning
|
||||
**Note:** This page is in construction 🚧
|
||||
11
docs/src/programming/python-bindings.md
Normal file
11
docs/src/programming/python-bindings.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
layout: doc
|
||||
outline: deep
|
||||
lang: en-US
|
||||
---
|
||||
|
||||
# Python Bindings
|
||||
|
||||
::: warning
|
||||
**Note:** This page is in construction 🚧
|
||||
:::
|
||||
11
docs/src/programming/rust.md
Normal file
11
docs/src/programming/rust.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
layout: doc
|
||||
outline: deep
|
||||
lang: en-US
|
||||
---
|
||||
|
||||
# Rust
|
||||
|
||||
::: warning
|
||||
**Note:** This page is in construction 🚧
|
||||
:::
|
||||
11
docs/src/tironcalc/about.md
Normal file
11
docs/src/tironcalc/about.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
layout: doc
|
||||
outline: deep
|
||||
lang: en-US
|
||||
---
|
||||
|
||||
# About Tironcalc
|
||||
|
||||
::: warning
|
||||
**Note:** This page is in construction 🚧
|
||||
:::
|
||||
11
docs/src/tironcalc/installing.md
Normal file
11
docs/src/tironcalc/installing.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
layout: doc
|
||||
outline: deep
|
||||
lang: en-US
|
||||
---
|
||||
|
||||
# Installing and running Tironcalc
|
||||
|
||||
::: warning
|
||||
**Note:** This page is in construction 🚧
|
||||
:::
|
||||
11
docs/src/web-application/about.md
Normal file
11
docs/src/web-application/about.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
layout: doc
|
||||
outline: deep
|
||||
lang: en-US
|
||||
---
|
||||
|
||||
# Importing Files
|
||||
|
||||
::: warning
|
||||
**Note:** This page is in construction 🚧
|
||||
:::
|
||||
@@ -16,5 +16,5 @@ You can upload files using one of the following methods:
|
||||
- **Click to Upload**: Click on the central upload area and select your file from your device.
|
||||
|
||||
::: info
|
||||
The maximum file size allowed is **1 MB**.
|
||||
The maximum file size allowed is **10 MB**.
|
||||
:::
|
||||
11
docs/src/web-application/sharing-files.md
Normal file
11
docs/src/web-application/sharing-files.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
layout: doc
|
||||
outline: deep
|
||||
lang: en-US
|
||||
---
|
||||
|
||||
# Sharing Files
|
||||
|
||||
::: warning
|
||||
**Note:** This page is in construction 🚧
|
||||
:::
|
||||
Reference in New Issue
Block a user