WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
File tree Expand file tree Collapse file tree 5 files changed +12
-7
lines changed
Expand file tree Collapse file tree 5 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -83,15 +83,20 @@ The documentation is built with [sphinx](https://www.sphinx-doc.org/en/master/)
8383making use of the [ PyData Sphinx theme] ( https://pydata-sphinx-theme.readthedocs.io/en/stable/index.html ) .
8484
8585To build it locally
86+
8687- create and activate an isolated development environment with the necessary dependencies
87- with
88+ with
89+
8890``` bash
8991conda env create -f docs/environment.yml
9092conda activate lumino_documentation
9193```
94+
9295- build, for example the html version, with
96+
9397``` bash
9498cd docs
9599make html
96100```
97- The HTML pages are then located in the ` build/html ` directory.
101+
102+ The HTML pages are then located in the ` build/html ` directory.
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ import { TextRenderer } from './textrenderer';
5252 * the child widgets of a data grid directly is undefined behavior.
5353 *
5454 * This class is not designed to be subclassed.
55- *
55+ *
5656 * See also the related [example](../../examples/datagrid/index.html) and
5757 * its [source](https://github.com/jupyterlab/lumino/tree/main/examples/example-datagrid).
5858 */
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import { Widget } from './widget';
1515 *
1616 * #### Notes
1717 * This class provides a convenience wrapper around {@link AccordionLayout}.
18- *
18+ *
1919 * See also the related [example](../../examples/accordionpanel/index.html) and
2020 * its [source](https://github.com/jupyterlab/lumino/tree/main/examples/example-accordionpanel).
2121 */
@@ -24,7 +24,7 @@ export class AccordionPanel extends SplitPanel {
2424 * Construct a new accordion panel.
2525 *
2626 * @param options - The options for initializing the accordion panel.
27- *
27+ *
2828 */
2929 constructor ( options : AccordionPanel . IOptions = { } ) {
3030 super ( { ...options , layout : Private . createLayout ( options ) } ) ;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ import { Widget } from './widget';
3131
3232/**
3333 * A widget which provides a flexible docking area for widgets.
34- *
34+ *
3535 * #### Notes
3636 * See also the related [example](../../examples/dockpanel/index.html) and
3737 * its [source](https://github.com/jupyterlab/lumino/tree/main/examples/example-dockpanel).
Original file line number Diff line number Diff line change @@ -745,7 +745,7 @@ export namespace SplitLayout {
745745 * The orientation of the layout.
746746 *
747747 * Possible values are documented in {@link SplitLayout.Orientation}.
748- *
748+ *
749749 * The default is `'horizontal'`.
750750 */
751751 orientation ?: Orientation ;
You can’t perform that action at this time.
0 commit comments