##// END OF EJS Templates
Merge pull request #3323 from takluyver/strip-prompts...
Merge pull request #3323 from takluyver/strip-prompts Strip prompts even if the prompt isn't present on the first line. Users (including me) often copy and paste examples from just after the first prompt. This checks for prompts in the first two lines of a block, but if they aren't found there, it will ignore prompt-like prefixes in later lines, to minimise interference with multi-line strings etc. This fixes both incoming copies (transformed before running code) and outgoing (copied from the Qt console). Closes #3206
Min RK -
r10679:689d7bfc merge
Show More
Name Size Modified Last Commit Author
/ IPython / frontend / html / notebook / static / js
celltoolbarpresets
README.md Loading ...
cell.js Loading ...
celltoolbar.js Loading ...
clusterlist.js Loading ...
codecell.js Loading ...
codemirror-ipython.js Loading ...
completer.js Loading ...
config.js Loading ...
contexthint.js Loading ...
custom.js Loading ...
events.js Loading ...
kernel.js Loading ...
layoutmanager.js Loading ...
loginmain.js Loading ...
loginwidget.js Loading ...
logoutmain.js Loading ...
maintoolbar.js Loading ...
mathjaxutils.js Loading ...
menubar.js Loading ...
namespace.js Loading ...
notebook.js Loading ...
notebooklist.js Loading ...
notebookmain.js Loading ...
notificationarea.js Loading ...
notificationwidget.js Loading ...
outputarea.js Loading ...
page.js Loading ...
pagemain.js Loading ...
pager.js Loading ...
projectdashboardmain.js Loading ...
quickhelp.js Loading ...
savewidget.js Loading ...
textcell.js Loading ...
toolbar.js Loading ...
tooltip.js Loading ...
utils.js Loading ...

Documentation

How to Build/ view the doc for javascript.

Javascript documentation should follow a style close to JSDoc one, so you
should be able to build them with your favorite documentation builder.

Still the documentation comment are mainly written to be read with YUI doc.

You can either build a static version, or start a YUIdoc server that will live
update the doc at every page request.

To do so, you will need to install YUIdoc.

Install NodeJS

Node is a browser less javascript interpreter. To install it please refer to
the documentation for your platform. Install also NPM (node package manager) if
it does not come bundled with it.

Get YUIdoc

npm does by default install package in ./node_modules instead of doing a
system wide install. I'll leave you to yuidoc docs if you want to make a system
wide install.

First, cd into js directory :

cd IPython/frontend/html/notebook/static/js/
# install yuidoc
npm install yuidocjs

Run YUIdoc server

From IPython/frontend/html/notebook/static/js/

# run yuidoc for install dir 
./node_modules/yuidocjs/lib/cli.js --server .

Follow the instruction and the documentation should be available on localhost:3000

Omitting --server will build a static version in the out folder by default.