You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.3 KiB
28 lines
1.3 KiB
3 months ago
|
/**
|
||
|
**-
|
||
|
* JavaScript providing functions for
|
||
|
* generating inset HTML elements
|
||
|
* required by an article
|
||
|
*
|
||
|
* Inset elements are usually inset by
|
||
|
* at least a few characters and have
|
||
|
* background and foreground colours
|
||
|
* reversed compared to the rest of the
|
||
|
* page
|
||
|
*
|
||
|
* Author - Philip Osztromok
|
||
|
*
|
||
|
* 27 March 2022
|
||
|
*+
|
||
|
*/
|
||
|
|
||
|
import { addBanner, addArticle, addTitle, addHeader, addParagraph, addClassParagraph, addCaption, addSubHeader, addSmallHeader, addOrderedList, addUnorderedList, addBlockquote, addQuote } from '/scripts/article.js';
|
||
|
import { addInset, addInsetList, addInsetCodeListing, addInsetBulletList } from '/scripts/inset.js';
|
||
|
import { addImageWithCaption, addButtonGroup } from '/scripts/visuals.js';
|
||
|
import { addSidebar} from '/scripts/sidebar.js';
|
||
|
import { addSyntax } from '/scripts/code.js';
|
||
|
import { menu } from '/scripts/web_dev_buttons.js';
|
||
|
import { global_menu } from '/scripts/grid_layout1.js';
|
||
|
import { addTable } from '/scripts/table.js';
|
||
|
|
||
|
export { addBanner, addArticle, addTitle, addHeader, addParagraph, addClassParagraph, addCaption, addSubHeader, addSmallHeader, addOrderedList, addUnorderedList, addBlockquote, addQuote, addInset, addInsetList, addInsetCodeListing, addInsetBulletList, addImageWithCaption, addButtonGroup, addSidebar, addSyntax, menu, global_menu, addTable }
|