Skip to content

Commit

Permalink
Add usage notes and 'under construction' signs
Browse files Browse the repository at this point in the history
  • Loading branch information
mateogianolio committed Sep 7, 2023
1 parent 0a113f4 commit 27deae0
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 13 deletions.
3 changes: 3 additions & 0 deletions docs/api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ API reference

classes/index
functions/index

.. tip::
Use the sidebar menu to navigate through the API reference.
2 changes: 2 additions & 0 deletions docs/dev/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ Development
:caption: Development
:hidden:

.. warning::
The development page is currently under construction.
11 changes: 10 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ Home
:maxdepth: 1
:hidden:

User guide <user/index>
User guide <user-guide/index>
API reference <api/index>
Development <dev/index>

Welcome to the documentation for the linear algebra package vectorious.

Useful links
************

- :doc:`user-guide/index`
- :doc:`api/index`
- :doc:`dev/index`
File renamed without changes.
File renamed without changes.
18 changes: 18 additions & 0 deletions docs/user-guide/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.. user-guide
User guide
======================================

.. toctree::
:maxdepth: 2
:caption: User guide
:hidden:

installation
basics

.. warning::
The user guide is currently under construction.


The user guide is where you can learn how to install and use vectorious.
File renamed without changes.
12 changes: 0 additions & 12 deletions docs/user/index.rst

This file was deleted.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"test": "jest",
"benchmark": "for file in $(ls src/**/*.bench.ts); do ts-node $file; done",
"docs": "rm -rf docs/code && npx tsc --outDir docs/code && make -C docs html",
"docs:live": "rm -rf docs/code && npx tsc --outDir docs/code && make -C docs livehtml",
"build:node": "esbuild --bundle src/index.ts --minify --sourcemap --platform=node --outfile=dist/index.js --external:nblas --external:nlapack",
"build:browser": "esbuild --bundle src/index.ts --minify --sourcemap --platform=browser --global-name=v --outfile=dist/index.browser.js --external:nblas --external:nlapack",
"build:esm": "esbuild --bundle src/index.ts --minify --sourcemap --format=esm --outfile=dist/index.esm.js --external:nblas --external:nlapack",
Expand Down

0 comments on commit 27deae0

Please sign in to comment.