Add markdown editor node
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-10-16 12:20:16 -05:00
parent 74b7cdadc7
commit b588865137
15 changed files with 251 additions and 14 deletions

View File

@@ -37,6 +37,9 @@
<ng-container *ngIf="node.isNorm()">
<editor-norm style="flex: 1;" [nodeId]="node.UUID"></editor-norm>
</ng-container>
<ng-container *ngIf="node.type === 'markdown'">
<editor-markdown style="flex: 1;" [nodeId]="node.UUID"></editor-markdown>
</ng-container>
<ng-container *ngIf="node.type === 'database_ref'">
<editor-database style="flex: 1;" [nodeId]="node.UUID"></editor-database>
</ng-container>

View File

@@ -32,6 +32,10 @@ ion-icon.invisible {
&.file_ref {
color: var(--noded-background-files);
}
&.markdown {
color: var(--noded-background-markdown);
}
}
.host-add-button {