##// END OF EJS Templates
Merge pull request #717 from stefanv/htmlnotebook_highlight_markdown...
Merge pull request #717 from stefanv/htmlnotebook_highlight_markdown Add source highlighting to markdown snippets, with a theme matching the CodeMirror one we use. This only highlights source code in blocks that are indented 4 spaces in markdown cells, leaving <pre> blocks alone. If highlight is desired in <pre> blocks, a further <code> block must be created. The visual theme matches the one used for CodeMirror as much as possible.

File last commit:

r4619:d5b4ff0a merge
r4658:9460984a merge
Show More
notebook_main.js
58 lines | 2.4 KiB | application/javascript | JavascriptLexer
Brian E. Granger
More review changes....
r4609 //----------------------------------------------------------------------------
// Copyright (C) 2008-2011 The IPython Development Team
//
// Distributed under the terms of the BSD License. The full license is in
// the file COPYING, distributed as part of this software.
//----------------------------------------------------------------------------
Brian E. Granger
Splitting notebook.js into muliple files for development ease.
r4349
//============================================================================
// On document ready
//============================================================================
$(document).ready(function () {
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
},
displayAlign: 'left', // Change this to 'center' to center equations.
"HTML-CSS": {
styles: {'.MathJax_Display': {"margin": 0}}
}
});
Brian E. Granger
Starting work on a Markdown cell.
r4507 IPython.markdown_converter = new Markdown.Converter();
Brian E. Granger
Splitting notebook.js into muliple files for development ease.
r4349
Brian E. Granger
Work on save widget, kernel status widget and notebook section.
r4372 $('div#header').addClass('border-box-sizing');
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 $('div#main_app').addClass('border-box-sizing ui-widget ui-widget-content');
Brian E. Granger
Left panel is now working.
r4363 $('div#notebook_panel').addClass('border-box-sizing ui-widget');
Brian E. Granger
Splitting notebook.js into muliple files for development ease.
r4349
Brian E. Granger
Left panel is now working.
r4363 IPython.layout_manager = new IPython.LayoutManager();
Brian E. Granger
Refactoring pager into its own class.
r4357 IPython.pager = new IPython.Pager('div#pager', 'div#pager_splitter');
Brian E. Granger
Left panel is now working.
r4363 IPython.left_panel = new IPython.LeftPanel('div#left_panel', 'div#left_panel_splitter');
Brian E. Granger
Work on save widget, kernel status widget and notebook section.
r4372 IPython.save_widget = new IPython.SaveWidget('span#save_widget');
Stefan van der Walt
Refactor static printing.
r4615 IPython.print_widget = new IPython.PrintWidget('span#print_widget');
Brian E. Granger
Left panel is now working.
r4363 IPython.notebook = new IPython.Notebook('div#notebook');
Brian E. Granger
Work on save widget, kernel status widget and notebook section.
r4372 IPython.kernel_status_widget = new IPython.KernelStatusWidget('#kernel_status');
IPython.kernel_status_widget.status_idle();
Brian E. Granger
Refactoring pager into its own class.
r4357
Brian E. Granger
Updating font-sizing to use the YUI protocol.
r4379 IPython.layout_manager.do_resize();
Brian E. Granger
Hacks to prevent FLOUC (flash of unformatted content).
r4395
// These have display: none in the css file and are made visible here to prevent FLOUC.
$('div#header').css('display','block');
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 $('div#main_app').css('display','block');
Brian E. Granger
Massive work on the notebook document format....
r4484
// Perform these actions after the notebook has been loaded.
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 // We wait 100 milliseconds because the notebook scrolls to the top after a load
// is completed and we need to wait for that to mostly finish.
IPython.notebook.load_notebook(function () {
setTimeout(function () {
IPython.save_widget.update_url();
IPython.layout_manager.do_resize();
IPython.pager.collapse();
},100);
});
Brian E. Granger
Splitting notebook.js into muliple files for development ease.
r4349 });