mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-27 01:25:36 -05:00
Add markdown cell to Notebook (#3014)
* add markdown cell * add markdown preview for Notebook * formatting * address comment
This commit is contained in:
@@ -38,7 +38,10 @@ export class NotebookComponent extends AngularDisposable implements OnInit {
|
||||
let cell2: ICellModel = {
|
||||
id: '2', language: 'sql', source: 'select 1', cellType: CellTypes.Code, active: false
|
||||
};
|
||||
this.cells.push(cell1, cell2);
|
||||
let cell3: ICellModel = {
|
||||
id: '3', language: 'markdown', source: '## This is test!', cellType: CellTypes.Markdown, active: false
|
||||
};
|
||||
this.cells.push(cell1, cell2, cell3);
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
|
||||
Reference in New Issue
Block a user