├── .gitignore ├── Config ├── BundleInfo.m └── LoadInfo.wl ├── Dependencies ├── BTools │ ├── All.m │ ├── BTools.wl │ ├── BTools │ │ ├── Cruft.wl │ │ ├── Developer.wl │ │ ├── Experimental.wl │ │ ├── External.wl │ │ ├── External │ │ │ ├── Git.wl │ │ │ └── Google.wl │ │ ├── Formatting.wl │ │ ├── Formatting │ │ │ └── FormattingTools.wl │ │ ├── Frameworks.wl │ │ ├── FrontEnd.wl │ │ ├── Paclets.wl │ │ ├── Paclets │ │ │ ├── AppBuilder.wl │ │ │ ├── DocGen.wl │ │ │ └── PacletTools.wl │ │ ├── Utilities.wl │ │ ├── Utilities │ │ │ └── DocFind.wl │ │ ├── Web.wl │ │ └── Web │ │ │ ├── Markdown.wl │ │ │ └── Pelican.wl │ ├── BToolsLoader.wl │ ├── Config │ │ ├── BundleInfo.m │ │ ├── DocInfo.m │ │ ├── LoadInfo.m │ │ └── UploadInfo.m │ ├── FrontEnd │ │ └── StyleSheets │ │ │ └── BTools │ │ │ ├── CodeNotebook.nb │ │ │ ├── CodePackage.nb │ │ │ ├── CodePackagePlain.nb │ │ │ ├── DocGen.nb │ │ │ ├── MarkdownNotebook.nb │ │ │ └── SyntaxHighlighting.nb │ ├── Kernel │ │ └── init.m │ ├── LICENSE.md │ ├── Packages │ │ ├── Developer │ │ │ ├── AuthDialogs.m │ │ │ ├── ContextTools.m │ │ │ ├── EncodedCache.m │ │ │ ├── FileTools.m │ │ │ ├── FormattingTools.m │ │ │ ├── FrontEndTools.m │ │ │ ├── FunctionTools.m │ │ │ ├── KeyChain.m │ │ │ ├── SymbolTools.m │ │ │ └── SyncTools.m │ │ ├── External │ │ │ ├── Git │ │ │ │ ├── Git.m │ │ │ │ ├── GitHub.m │ │ │ │ └── SVN.m │ │ │ ├── GitConnection.m │ │ │ ├── Google.m │ │ │ ├── Google │ │ │ │ ├── Analytics.m │ │ │ │ ├── Common.m │ │ │ │ └── Drive.m │ │ │ ├── ProcessTools.m │ │ │ └── PyTools.m │ │ ├── Formatting │ │ │ ├── FormattingTools.m │ │ │ ├── FormattingTools │ │ │ │ └── FormattingToolsPackage.m │ │ │ └── NotebookTools.m │ │ ├── Frameworks │ │ │ ├── CuratedData.m │ │ │ └── CustomServiceConnection.m │ │ ├── FrontEnd │ │ │ ├── IndentableCells.m │ │ │ ├── StylesheetEdits.m │ │ │ └── SyntaxColoring.m │ │ ├── Paclets │ │ │ ├── AppBuilder.m │ │ │ ├── AppBuilder │ │ │ │ ├── Builder.m │ │ │ │ ├── Core.m │ │ │ │ ├── DocGen.m │ │ │ │ ├── Git.m │ │ │ │ ├── Paclets.m │ │ │ │ └── Testing.m │ │ │ ├── DocGen.m │ │ │ ├── DocGen │ │ │ │ ├── DocGenCore.m │ │ │ │ ├── GuidePages.m │ │ │ │ ├── SymbolPages.m │ │ │ │ ├── TutorialPages.m │ │ │ │ └── WebExport.m │ │ │ ├── DocumentationSiteBuilder.m │ │ │ ├── PacletExecute.m │ │ │ ├── PacletServerBuilder.m │ │ │ └── PacletTools │ │ │ │ ├── PacletServerBuilderPackage.m │ │ │ │ └── PacletTools.m │ │ ├── Utilities │ │ │ ├── DocFind.m │ │ │ ├── DocFind │ │ │ │ └── DocFind.m │ │ │ ├── FEMisc.m │ │ │ ├── NotebookTools.m │ │ │ ├── ScrapeTools.m │ │ │ └── TRTools.m │ │ └── Web │ │ │ ├── HTMLTools.m │ │ │ ├── Markdown │ │ │ └── NotebookMarkdownInternals.m │ │ │ ├── MarkdownParsers.m │ │ │ ├── NotebookToMarkdown.m │ │ │ └── SiteBuilder.m │ ├── PacletIcon.png │ ├── PacletIconBig.png │ ├── README.md │ └── Resources │ │ ├── Data │ │ └── FrontEnd │ │ │ ├── ResourceRules.wl │ │ │ ├── ResourceStrings.wl │ │ │ ├── Resources.wl │ │ │ ├── Tokens.wl │ │ │ └── Values.wl │ │ ├── Icons │ │ ├── PacletIcon.png │ │ └── PacletSiteIcon.png │ │ ├── Images │ │ └── GoogleOAuthExample.png │ │ └── Themes │ │ └── template_lib │ │ ├── README.md │ │ ├── include │ │ ├── analytics.html │ │ ├── article_info.html │ │ ├── breadcrumbs.html │ │ ├── comments.html │ │ ├── config │ │ │ ├── icons.m │ │ │ ├── links.m │ │ │ ├── page_links.m │ │ │ ├── social_links.m │ │ │ └── stylesheets.m │ │ ├── copyable_input.css │ │ ├── copyable_input.html │ │ ├── copyable_input.js │ │ ├── footer_notebook.html │ │ ├── lib │ │ │ ├── createRSSElementDescription.m │ │ │ ├── embedNotebook.m │ │ │ ├── extractBody.m │ │ │ ├── getIndexListingBy.m │ │ │ ├── getPageTitle.m │ │ │ ├── getSiteLinks.m │ │ │ ├── getSiteName.m │ │ │ ├── getTemplateArguments.m │ │ │ ├── getTemplateArgumentsNoArg.m │ │ │ ├── getTemplateVariable.m │ │ │ ├── loadTemplateLib.m │ │ │ ├── makeBlogrollLinkList.m │ │ │ ├── makeSiteElements.m │ │ │ ├── makeSiteHyperlink.m │ │ │ ├── makeSiteIcons.m │ │ │ ├── makeSiteImg.m │ │ │ ├── makeSiteLink.m │ │ │ ├── makeSiteLinkList.m │ │ │ ├── makeSiteStylesheet.m │ │ │ ├── makeSiteTagLinks.m │ │ │ ├── makeSocialLinkList.m │ │ │ ├── nextPreviousButtons.m │ │ │ ├── prepArticleInfo.m │ │ │ ├── reslotMissing.m │ │ │ ├── sortIndexListingBy.m │ │ │ ├── templateArgumentLookup.m │ │ │ ├── templates │ │ │ │ ├── cloud-notebook.html │ │ │ │ ├── includeComments.html │ │ │ │ ├── next-previous.html │ │ │ │ ├── pageLocalizedBlock.html │ │ │ │ ├── pagination.html │ │ │ │ ├── siteElement.html │ │ │ │ ├── siteNameJoin.html │ │ │ │ ├── varDefinedBlock.html │ │ │ │ ├── varNotFalseBlock.html │ │ │ │ ├── varNotTrueBlock.html │ │ │ │ └── varTrueBlock.html │ │ │ ├── varDefined.m │ │ │ ├── varMatch.m │ │ │ ├── varNotFalse.m │ │ │ ├── varNotTrue.m │ │ │ └── varTrue.m │ │ ├── load_jQuery.html │ │ ├── mathjax.html │ │ ├── next-previous.html │ │ ├── page-footer.html │ │ ├── page-header.html │ │ ├── pagination.html │ │ ├── primary-content.html │ │ ├── related-posts.html │ │ ├── rss.html │ │ ├── search.html │ │ ├── site-icons.html │ │ ├── site-stylesheets.html │ │ └── site-title.html │ │ ├── static │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── common.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ ├── glyphicons-halflings-regular.woff2 │ │ │ └── mathematica │ │ │ │ ├── Mathematica-Bold.woff │ │ │ │ ├── Mathematica.woff │ │ │ │ ├── MathematicaMono-Bold.woff │ │ │ │ └── MathematicaMono.woff │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery.min.js │ │ └── prettify │ │ │ ├── src │ │ │ ├── lang-mma.min.js │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ └── run_prettify.js │ │ │ └── styles │ │ │ └── prettify-mma.min.css │ │ ├── templates │ │ ├── article.html │ │ ├── author.html │ │ ├── authors.html │ │ ├── base.html │ │ ├── categories.html │ │ ├── category.html │ │ ├── include │ │ │ ├── analytics.html │ │ │ ├── comments.html │ │ │ ├── config │ │ │ │ ├── icons.m │ │ │ │ ├── links.m │ │ │ │ ├── page_links.m │ │ │ │ ├── social_links.m │ │ │ │ └── stylesheets.m │ │ │ ├── copyable_input.html │ │ │ ├── pagination.html │ │ │ ├── rss.html │ │ │ └── search.html │ │ ├── index.html │ │ ├── page.html │ │ ├── redirect.html │ │ ├── rss_feed.html │ │ ├── search.html │ │ ├── tag.html │ │ └── tags.html │ │ └── tipuesearch │ │ ├── tipuesearch.css │ │ ├── tipuesearch.js │ │ ├── tipuesearch.min.js │ │ ├── tipuesearch_content.js │ │ └── tipuesearch_set.js └── Ems │ ├── Config │ ├── BundleInfo.m │ └── LoadInfo.m │ ├── Ems.wl │ ├── EmsLoader.wl │ ├── FrontEnd │ └── Palettes │ │ └── Ems │ │ └── EmsAssistant.nb │ ├── Kernel │ └── init.m │ ├── LICENSE.md │ ├── Packages │ ├── Main.m │ └── Package │ │ ├── GitHub │ │ ├── GitHub.m │ │ └── Helpers │ │ │ └── Helpers.m │ │ └── Sites │ │ ├── Build.m │ │ └── Sites.m │ ├── README.md │ ├── Resources │ ├── Icons │ │ ├── banner.png │ │ ├── banner_tall.png │ │ ├── favicon-16x16.png │ │ └── favicon-32x32.png │ ├── Templates │ │ ├── blog │ │ │ ├── SiteConfig.wl │ │ │ └── content │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── pages │ │ │ │ ├── About.md │ │ │ │ └── About.nb │ │ │ │ ├── posts │ │ │ │ ├── Post #1.md │ │ │ │ ├── Post #1.nb │ │ │ │ ├── Second Post.md │ │ │ │ └── Second Post.nb │ │ │ │ └── site-logo.png │ │ ├── docs │ │ │ ├── SiteConfig.wl │ │ │ └── content │ │ │ │ ├── banner.png │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── guide │ │ │ │ ├── Guide.md │ │ │ │ └── Guide.nb │ │ │ │ ├── pages │ │ │ │ ├── About.md │ │ │ │ └── About.nb │ │ │ │ ├── ref │ │ │ │ ├── Function.md │ │ │ │ ├── Function.nb │ │ │ │ ├── Function1.md │ │ │ │ ├── Function1.nb │ │ │ │ ├── Function2.md │ │ │ │ └── Function2.nb │ │ │ │ └── site-logo.png │ │ ├── portfolio │ │ │ ├── SiteConfig.wl │ │ │ └── content │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── pages │ │ │ │ ├── About.md │ │ │ │ └── About.nb │ │ │ │ ├── posts │ │ │ │ ├── Project 1.md │ │ │ │ ├── Project 1.nb │ │ │ │ ├── Project 2.md │ │ │ │ ├── Project 2.nb │ │ │ │ ├── Project 3.md │ │ │ │ └── Project 3.nb │ │ │ │ └── site-logo.png │ │ └── scroll │ │ │ ├── SiteConfig.wl │ │ │ └── content │ │ │ ├── banner.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── pages │ │ │ ├── About.md │ │ │ └── About.nb │ │ │ ├── posts │ │ │ ├── Post #1.md │ │ │ ├── Post #1.nb │ │ │ ├── Second Post.md │ │ │ └── Second Post.nb │ │ │ └── site-logo.png │ └── Themes │ │ ├── bootstrap-blog │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.amelia.min.css │ │ │ │ ├── bootstrap.cerulean.min.css │ │ │ │ ├── bootstrap.cosmo.min.css │ │ │ │ ├── bootstrap.cupid.min.css │ │ │ │ ├── bootstrap.custom.min.css │ │ │ │ ├── bootstrap.cyborg.min.css │ │ │ │ ├── bootstrap.darkly.min.css │ │ │ │ ├── bootstrap.flatly.min.css │ │ │ │ ├── bootstrap.journal.min.css │ │ │ │ ├── bootstrap.lumen.min.css │ │ │ │ ├── bootstrap.mma.min.css │ │ │ │ ├── bootstrap.paper.min.css │ │ │ │ ├── bootstrap.readable-old.min.css │ │ │ │ ├── bootstrap.readable.min.css │ │ │ │ ├── bootstrap.sandstone.min.css │ │ │ │ ├── bootstrap.shamrock.min.css │ │ │ │ ├── bootstrap.simplex.min.css │ │ │ │ ├── bootstrap.slate.min.css │ │ │ │ ├── bootstrap.spacelab.min.css │ │ │ │ ├── bootstrap.superhero.min.css │ │ │ │ ├── bootstrap.united.min.css │ │ │ │ ├── bootstrap.yeti.min.css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── font-awesome.css.map │ │ │ │ ├── style.css │ │ │ │ └── typogrify.css │ │ │ └── js │ │ │ │ ├── bodypadding.js │ │ │ │ └── jXHR.js │ │ └── templates │ │ │ ├── archives.html │ │ │ ├── article.html │ │ │ ├── article_list.html │ │ │ ├── author.html │ │ │ ├── authors.html │ │ │ ├── base.html │ │ │ ├── categories.html │ │ │ ├── category.html │ │ │ ├── include │ │ │ ├── aboutme.html │ │ │ ├── banner.html │ │ │ ├── config │ │ │ │ ├── icons.m │ │ │ │ ├── links.m │ │ │ │ ├── page_links.m │ │ │ │ ├── social_links.m │ │ │ │ └── stylesheets.m │ │ │ ├── footer.html │ │ │ ├── sidebar.html │ │ │ └── sidebar │ │ │ │ ├── links.html │ │ │ │ ├── recent_posts.html │ │ │ │ └── social.html │ │ │ ├── index.html │ │ │ ├── page.html │ │ │ ├── tag.html │ │ │ └── tags.html │ │ ├── bootstrap-docs │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.amelia.min.css │ │ │ │ ├── bootstrap.cerulean.min.css │ │ │ │ ├── bootstrap.cosmo.min.css │ │ │ │ ├── bootstrap.cupid.min.css │ │ │ │ ├── bootstrap.custom.min.css │ │ │ │ ├── bootstrap.cyborg.min.css │ │ │ │ ├── bootstrap.darkly.min.css │ │ │ │ ├── bootstrap.flatly.min.css │ │ │ │ ├── bootstrap.journal.min.css │ │ │ │ ├── bootstrap.lumen.min.css │ │ │ │ ├── bootstrap.mma.min.css │ │ │ │ ├── bootstrap.paper.min.css │ │ │ │ ├── bootstrap.readable-old.min.css │ │ │ │ ├── bootstrap.readable.min.css │ │ │ │ ├── bootstrap.sandstone.min.css │ │ │ │ ├── bootstrap.shamrock.min.css │ │ │ │ ├── bootstrap.simplex.min.css │ │ │ │ ├── bootstrap.slate.min.css │ │ │ │ ├── bootstrap.spacelab.min.css │ │ │ │ ├── bootstrap.superhero.min.css │ │ │ │ ├── bootstrap.united.min.css │ │ │ │ ├── bootstrap.yeti.min.css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── font-awesome.css.map │ │ │ │ ├── style.css │ │ │ │ └── typogrify.css │ │ │ └── js │ │ │ │ ├── bodypadding.js │ │ │ │ └── jXHR.js │ │ └── templates │ │ │ ├── archives.html │ │ │ ├── article.html │ │ │ ├── author.html │ │ │ ├── authors.html │ │ │ ├── base.html │ │ │ ├── categories.html │ │ │ ├── category.html │ │ │ ├── function.html │ │ │ ├── guide.html │ │ │ ├── include │ │ │ ├── aboutme.html │ │ │ ├── banner.html │ │ │ ├── config │ │ │ │ ├── icons.m │ │ │ │ ├── links.m │ │ │ │ ├── page_links.m │ │ │ │ ├── social_links.m │ │ │ │ └── stylesheets.m │ │ │ ├── footer.html │ │ │ ├── sidebar.html │ │ │ └── sidebar │ │ │ │ ├── links.html │ │ │ │ ├── recent_posts.html │ │ │ │ └── social.html │ │ │ ├── index.html │ │ │ ├── indexes │ │ │ ├── functions.html │ │ │ ├── guides.html │ │ │ └── tutorials.html │ │ │ ├── page.html │ │ │ ├── tag.html │ │ │ ├── tags.html │ │ │ └── tutorial.html │ │ ├── bootstrap-portfolio │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.amelia.min.css │ │ │ │ ├── bootstrap.cerulean.min.css │ │ │ │ ├── bootstrap.cosmo.min.css │ │ │ │ ├── bootstrap.cupid.min.css │ │ │ │ ├── bootstrap.custom.min.css │ │ │ │ ├── bootstrap.cyborg.min.css │ │ │ │ ├── bootstrap.darkly.min.css │ │ │ │ ├── bootstrap.flatly.min.css │ │ │ │ ├── bootstrap.journal.min.css │ │ │ │ ├── bootstrap.lumen.min.css │ │ │ │ ├── bootstrap.mma.min.css │ │ │ │ ├── bootstrap.paper.min.css │ │ │ │ ├── bootstrap.readable-old.min.css │ │ │ │ ├── bootstrap.readable.min.css │ │ │ │ ├── bootstrap.sandstone.min.css │ │ │ │ ├── bootstrap.shamrock.min.css │ │ │ │ ├── bootstrap.simplex.min.css │ │ │ │ ├── bootstrap.slate.min.css │ │ │ │ ├── bootstrap.spacelab.min.css │ │ │ │ ├── bootstrap.superhero.min.css │ │ │ │ ├── bootstrap.united.min.css │ │ │ │ ├── bootstrap.yeti.min.css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── font-awesome.css.map │ │ │ │ ├── style.css │ │ │ │ └── typogrify.css │ │ │ └── js │ │ │ │ ├── bodypadding.js │ │ │ │ └── jXHR.js │ │ └── templates │ │ │ ├── archives.html │ │ │ ├── article.html │ │ │ ├── article_grid.html │ │ │ ├── article_list.html │ │ │ ├── author.html │ │ │ ├── authors.html │ │ │ ├── base.html │ │ │ ├── categories.html │ │ │ ├── category.html │ │ │ ├── include │ │ │ ├── aboutme.html │ │ │ ├── banner.html │ │ │ ├── config │ │ │ │ ├── icons.m │ │ │ │ ├── links.m │ │ │ │ ├── page_links.m │ │ │ │ ├── social_links.m │ │ │ │ └── stylesheets.m │ │ │ ├── footer.html │ │ │ ├── sidebar.html │ │ │ └── sidebar │ │ │ │ ├── links.html │ │ │ │ ├── recent_posts.html │ │ │ │ └── social.html │ │ │ ├── index.html │ │ │ ├── page.html │ │ │ ├── tag.html │ │ │ └── tags.html │ │ └── bootstrap-single-page │ │ ├── README.md │ │ ├── static │ │ ├── css │ │ │ ├── bootstrap.amelia.min.css │ │ │ ├── bootstrap.cerulean.min.css │ │ │ ├── bootstrap.cosmo.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.cupid.min.css │ │ │ ├── bootstrap.custom.min.css │ │ │ ├── bootstrap.cyborg.min.css │ │ │ ├── bootstrap.darkly.min.css │ │ │ ├── bootstrap.flatly.min.css │ │ │ ├── bootstrap.journal.min.css │ │ │ ├── bootstrap.lumen.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.mma.min.css │ │ │ ├── bootstrap.paper.min.css │ │ │ ├── bootstrap.readable-old.min.css │ │ │ ├── bootstrap.readable.min.css │ │ │ ├── bootstrap.sandstone.min.css │ │ │ ├── bootstrap.shamrock.min.css │ │ │ ├── bootstrap.simplex.min.css │ │ │ ├── bootstrap.slate.min.css │ │ │ ├── bootstrap.spacelab.min.css │ │ │ ├── bootstrap.superhero.min.css │ │ │ ├── bootstrap.united.min.css │ │ │ ├── bootstrap.yeti.min.css │ │ │ ├── grayscale.css │ │ │ ├── style.css │ │ │ └── typogrify.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ └── map-marker.png │ │ └── js │ │ │ ├── grayscale.js │ │ │ └── jquery.easing.min.js │ │ └── templates │ │ ├── include │ │ ├── banner.html │ │ └── config │ │ │ ├── icons.m │ │ │ ├── links.m │ │ │ ├── page_links.m │ │ │ ├── social_links.m │ │ │ └── stylesheets.m │ │ └── index.html │ ├── thumbnail.png │ └── thumbnail_big.png ├── Documentation ├── English │ ├── Guides │ │ └── SimpleDocs.nb │ ├── ReferencePages │ │ └── Symbols │ │ │ ├── BuildDocsSite.nb │ │ │ ├── BuildNotebookDocsSite.nb │ │ │ ├── CreateTemplateNotebook.nb │ │ │ ├── InitializeDocsSite.nb │ │ │ ├── OpenDocsSiteConfig.nb │ │ │ ├── SampleTemplateNotebook.nb │ │ │ ├── SaveNotebookMarkdown.nb │ │ │ ├── SaveNotebookToPaclet.nb │ │ │ ├── SaveNotebookToPacletProject.nb │ │ │ ├── SetNotebookPaclet.nb │ │ │ ├── SetPacletInfo.nb │ │ │ └── Symbol.nb │ ├── SimpleDocsStyles.nb │ └── Tutorials │ │ ├── BatchDocs.nb │ │ ├── SimpleDocs Blog Post.nb │ │ └── SimpleDocs.nb └── SimpleDocsStyles.nb ├── FrontEnd ├── Palettes │ └── SimpleDocs │ │ └── SimpleDocsHelper.nb └── StyleSheets │ └── SimpleDocs │ └── SimpleDocs.nb ├── Kernel └── init.m ├── LICENSE.md ├── Packages ├── Main.m ├── Main.nb └── Package │ ├── SimpleDocs.m │ └── SimpleDocs.nb ├── PacletInfo.m ├── README.md ├── Resources ├── SimpleDocsHelperGenerator.nb ├── icon.png └── icon_big.png ├── SimpleDocs.wl ├── SimpleDocs └── Package.wl ├── SimpleDocsLoader.wl └── project ├── README.nb ├── SimpleDocsDevelopment.nb └── docs ├── BuildInfo.wl ├── ContentCache.mx ├── DeploymentInfo.wl ├── SiteConfig.wl ├── content ├── banner.png ├── favicon-16x16.png ├── favicon-32x32.png ├── guide │ ├── SimpleDocs.md │ └── SimpleDocs.nb ├── img │ ├── batchdocs-3557312341007022428.png │ ├── builddocssite-2393383465378652495.png │ ├── createtemplatenotebook-3280065304017635439.png │ ├── createtemplatenotebook-4210691290280307682.png │ ├── createtemplatenotebook-750804503041114924.png │ ├── createtemplatenotebook-8839131942680359891.png │ ├── simpledocs-1599455536967208861.png │ ├── simpledocs-2507836165213850944.png │ ├── simpledocs-2968537504735316186.png │ ├── simpledocs-3479245701921111827.png │ ├── simpledocs-3968114955546408557.png │ ├── simpledocs-5041275459013259347.png │ ├── simpledocs-5307295244000017838.png │ ├── simpledocs-6768042905886740767.png │ ├── simpledocs-6839446010392387124.png │ ├── simpledocs-8406830451181930092.png │ └── simpledocs-97374131907832919.png ├── pages │ ├── About.md │ └── About.nb ├── ref │ ├── BuildDocsSite.md │ ├── BuildDocsSite.nb │ ├── BuildNotebookDocsSite.md │ ├── BuildNotebookDocsSite.nb │ ├── CreateTemplateNotebook.md │ ├── CreateTemplateNotebook.nb │ ├── InitializeDocsSite.md │ ├── InitializeDocsSite.nb │ ├── OpenDocsSiteConfig.md │ ├── OpenDocsSiteConfig.nb │ ├── SampleTemplateNotebook.md │ ├── SampleTemplateNotebook.nb │ ├── SaveNotebookMarkdown.md │ ├── SaveNotebookMarkdown.nb │ ├── SaveNotebookToPaclet.md │ ├── SaveNotebookToPaclet.nb │ ├── SaveNotebookToPacletProject.md │ ├── SaveNotebookToPacletProject.nb │ ├── SetNotebookPaclet.md │ ├── SetNotebookPaclet.nb │ ├── SetPacletInfo.md │ └── SetPacletInfo.nb ├── site-logo.png └── tutorial │ ├── BatchDocs.md │ ├── BatchDocs.nb │ ├── DocumentationSites.nb │ ├── SimpleDocs Blog Post.nb │ ├── SimpleDocs.md │ └── SimpleDocs.nb └── output ├── banner.png ├── favicon-16x16.png ├── favicon-32x32.png ├── guide └── SimpleDocs.html ├── img ├── batchdocs-3557312341007022428.png ├── builddocssite-2393383465378652495.png ├── createtemplatenotebook-3280065304017635439.png ├── createtemplatenotebook-4210691290280307682.png ├── createtemplatenotebook-750804503041114924.png ├── createtemplatenotebook-8839131942680359891.png ├── simpledocs-1599455536967208861.png ├── simpledocs-2507836165213850944.png ├── simpledocs-2968537504735316186.png ├── simpledocs-3479245701921111827.png ├── simpledocs-3968114955546408557.png ├── simpledocs-5041275459013259347.png ├── simpledocs-5307295244000017838.png ├── simpledocs-6768042905886740767.png ├── simpledocs-6839446010392387124.png ├── simpledocs-8406830451181930092.png └── simpledocs-97374131907832919.png ├── index.html ├── index ├── functions.html ├── guides.html └── tutorials.html ├── pages └── about.html ├── ref ├── BuildDocsSite.html ├── BuildNotebookDocsSite.html ├── CreateTemplateNotebook.html ├── InitializeDocsSite.html ├── OpenDocsSiteConfig.html ├── SampleTemplateNotebook.html ├── SaveNotebookMarkdown.html ├── SaveNotebookToPaclet.html ├── SaveNotebookToPacletProject.html ├── SetNotebookPaclet.html └── SetPacletInfo.html ├── search.html ├── site-logo.png ├── theme ├── css │ ├── bootstrap.amelia.min.css │ ├── bootstrap.cerulean.min.css │ ├── bootstrap.cosmo.min.css │ ├── bootstrap.cupid.min.css │ ├── bootstrap.custom.min.css │ ├── bootstrap.cyborg.min.css │ ├── bootstrap.darkly.min.css │ ├── bootstrap.flatly.min.css │ ├── bootstrap.journal.min.css │ ├── bootstrap.lumen.min.css │ ├── bootstrap.min.css │ ├── bootstrap.mma.min.css │ ├── bootstrap.paper.min.css │ ├── bootstrap.readable-old.min.css │ ├── bootstrap.readable.min.css │ ├── bootstrap.sandstone.min.css │ ├── bootstrap.shamrock.min.css │ ├── bootstrap.simplex.min.css │ ├── bootstrap.slate.min.css │ ├── bootstrap.spacelab.min.css │ ├── bootstrap.superhero.min.css │ ├── bootstrap.united.min.css │ ├── bootstrap.yeti.min.css │ ├── common.css │ ├── font-awesome.css │ ├── font-awesome.css.map │ ├── font-awesome.min.css │ ├── style.css │ └── typogrify.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ └── mathematica │ │ ├── Mathematica-Bold.woff │ │ ├── Mathematica.woff │ │ ├── MathematicaMono-Bold.woff │ │ └── MathematicaMono.woff ├── js │ ├── bodypadding.js │ ├── bootstrap.min.js │ ├── jXHR.js │ └── jquery.min.js ├── prettify │ ├── .gitignore │ ├── src │ │ ├── lang-mma.min.js │ │ ├── prettify.css │ │ ├── prettify.js │ │ └── run_prettify.js │ └── styles │ │ └── prettify-mma.min.css ├── search │ ├── search_index.json │ ├── search_options.json │ ├── search_related.json │ ├── search_replacements.json │ ├── search_stems.json │ ├── search_stopwords.json │ └── search_weights.json └── tipuesearch │ ├── tipuesearch.css │ ├── tipuesearch.js │ ├── tipuesearch.min.js │ ├── tipuesearch_content.js │ └── tipuesearch_set.js └── tutorial ├── BatchDocs.html └── SimpleDocs.html /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Config/BundleInfo.m: -------------------------------------------------------------------------------- 1 | (* Created with the Wolfram Language : www.wolfram.com *) 2 | {"RemovePaths" -> {"Private", "project", "GitHub", ".git"}, 3 | "RemovePatterns" -> {"Packages/*.nb", "Packages/*/*.nb", 4 | "Packages/*/*/*.nb", ".DS_Store"}} 5 | -------------------------------------------------------------------------------- /Config/LoadInfo.wl: -------------------------------------------------------------------------------- 1 | { 2 | "Mode" -> "Primary", 3 | "Dependencies" -> { 4 | { 5 | "BTools`", 6 | "RemovePaths" -> { 7 | ParentList, 8 | "PacletInfo.m", 9 | "Documentation", 10 | "Resources/Templates", 11 | "Resources/PaletteGenerators", 12 | "Resources/Themes/minimal", 13 | "FrontEnd/Palettes" 14 | } 15 | }, 16 | { 17 | "Ems`", 18 | "LoadInfo" -> {"Dependencies" -> {"BTools`"}}, 19 | "RemovePaths" -> { 20 | ParentList, 21 | "PacletInfo.m" 22 | } 23 | } 24 | }, 25 | "DependencyContexts" -> { 26 | "Ems`", 27 | "BTools`Developer`", 28 | "BTools`Web`", 29 | "BTools`Web`Markdown`", 30 | "BTools`Paclets`", 31 | "BTools`Paclets`DocGen`", 32 | "BTools`External`" 33 | }, 34 | "PreLoad" -> None, 35 | "FEHidden" -> {}, 36 | "PackageScope" -> None, 37 | "PackageSymbolDefinitions" -> False 38 | } -------------------------------------------------------------------------------- /Dependencies/BTools/All.m: -------------------------------------------------------------------------------- 1 | (* This is a convenience file to load all of the packages in this app *) 2 | Map[ 3 | Function[ 4 | BeginPackage[ 5 | StringSplit[ 6 | FileBaseName[DirectoryName@$InputFileName], 7 | "-" 8 | ][[1]]<>"`"<>#<>"`", 9 | StringSplit[ 10 | FileBaseName[DirectoryName@$InputFileName], 11 | "-" 12 | ][[1]]<>"`" 13 | ]; 14 | EndPackage[] 15 | ], 16 | { 17 | "Paclets", 18 | "Utilities", 19 | "Formatting", 20 | "FrontEnd", 21 | "Frameworks", 22 | "External", 23 | "Web", 24 | "Developer" 25 | } 26 | ] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] 29 | -------------------------------------------------------------------------------- /Dependencies/BTools/BTools.wl: -------------------------------------------------------------------------------- 1 | (* ::Subsection::Closed:: *) 2 | (*Temp Loading Flag Code*) 3 | 4 | 5 | Temp`PackageScope`BToolsLoading`Private`$PackageLoadData= 6 | If[#===None, <||>, Replace[Quiet@Get@#, Except[_?OptionQ]-><||>]]&@ 7 | Append[ 8 | FileNames[ 9 | "LoadInfo."~~"m"|"wl", 10 | FileNameJoin@{DirectoryName@$InputFileName, "Config"} 11 | ], 12 | None 13 | ][[1]]; 14 | Temp`PackageScope`BToolsLoading`Private`$PackageLoadMode= 15 | Lookup[Temp`PackageScope`BToolsLoading`Private`$PackageLoadData, "Mode", "Primary"]; 16 | Temp`PackageScope`BToolsLoading`Private`$DependencyLoad= 17 | TrueQ[Temp`PackageScope`BToolsLoading`Private`$PackageLoadMode==="Dependency"]; 18 | 19 | 20 | (* ::Subsection:: *) 21 | (*Main*) 22 | 23 | 24 | If[Temp`PackageScope`BToolsLoading`Private`$DependencyLoad, 25 | If[!TrueQ[Evaluate[Symbol["`BTools`PackageScope`Private`$LoadCompleted"]]], 26 | Get@FileNameJoin@{DirectoryName@$InputFileName, "BToolsLoader.wl"} 27 | ], 28 | If[!TrueQ[Evaluate[Symbol["BTools`PackageScope`Private`$LoadCompleted"]]], 29 | <"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Developer.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -1 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Experimental.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -1 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/External.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -1 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/External/Git.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -2 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/External/Google.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -2 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Formatting.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -1 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Formatting/FormattingTools.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -2 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Frameworks.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -1 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/FrontEnd.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -1 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Paclets.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -1 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Paclets/AppBuilder.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -2 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Paclets/DocGen.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -2 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Paclets/PacletTools.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -2 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Utilities.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -1 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Utilities/DocFind.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -2 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Web.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -1 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 1]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Web/Markdown.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -2 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Web/Pelican.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* This is a conveniece file so Needs["App`Pkg`"] can be used *) 4 | BeginPackage[ 5 | StringRiffle[ 6 | Flatten[{ 7 | StringSplit[ 8 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 9 | "-" 10 | ][[1]], 11 | FileNameSplit[ 12 | FileNameTake[ 13 | StringTrim[$InputFileName, ".wl"], 14 | -2 15 | ] 16 | ], 17 | "" 18 | }], 19 | "`" 20 | ], 21 | StringSplit[ 22 | FileBaseName[Nest[DirectoryName, $InputFileName, 2]], 23 | "-" 24 | ][[1]]<>"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /Dependencies/BTools/Config/BundleInfo.m: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* Created with the Wolfram Language : www.wolfram.com *) 4 | { 5 | 6 | "RemovePaths" -> { 7 | "Private", 8 | ".git", 9 | "project", 10 | "README.nb", 11 | ".gitignore" 12 | }, 13 | "RemovePatterns" -> { 14 | "Packages/*.nb", 15 | ".DS_Store" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Dependencies/BTools/Config/DocInfo.m: -------------------------------------------------------------------------------- 1 | (* Created with the Wolfram Language : www.wolfram.com *) 2 | {"Usage" -> Automatic, "Functions" -> Automatic, "Details" -> Automatic, 3 | "Examples" -> Defer, "RelatedLinks" -> None, "GuideOptions" -> {}, 4 | "TutorialOptions" -> {}} 5 | -------------------------------------------------------------------------------- /Dependencies/BTools/Config/LoadInfo.m: -------------------------------------------------------------------------------- 1 | { 2 | "PreLoad" -> None, 3 | "FEHidden" -> {}, 4 | "PackageScope" -> {}, 5 | "Mode" -> "Dependency", 6 | "Dependencies" -> {} 7 | } -------------------------------------------------------------------------------- /Dependencies/BTools/Config/UploadInfo.m: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | { 4 | "ServerName" -> Automatic 5 | } 6 | -------------------------------------------------------------------------------- /Dependencies/BTools/Kernel/init.m: -------------------------------------------------------------------------------- 1 | Get@FileNameJoin@{Nest[DirectoryName, $InputFileName, 2], "BTools.wl"} -------------------------------------------------------------------------------- /Dependencies/BTools/LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Mark Boyer 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/AppBuilder/Testing.m: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | 4 | 5 | (* ::Text:: *) 6 | (* 7 | Helper utilities for writing tests for a package 8 | *) 9 | 10 | 11 | 12 | AppFindTestingNotebook::usage="Finds the testing notebook for an app"; 13 | AppNewTestingNotebook::usage="Makes a new testing notebook for an app"; 14 | 15 | 16 | AppExportTests::usage="Exports the tests in the testing notebook"; 17 | AppListTests::usage="Lists the tests in the testing notebook"; 18 | AppAddTest::usage="Adds a test to the testing notebook"; 19 | 20 | 21 | Begin["`Private`"]; 22 | 23 | 24 | (* ::Subsubsection::Closed:: *) 25 | (*AppFindTestingNotebook*) 26 | 27 | 28 | 29 | AppFindTestingNotebook[app_, name_:"Testing.nb"]:= 30 | Replace[ 31 | AppFileNames[app, name, 32 | AppPath/@ 33 | { 34 | {"Resources", "Testing"}, 35 | {"Testing"}, 36 | {"Private", "Testing"}, 37 | {"Private"} 38 | } 39 | ], 40 | { 41 | {f_, ___}:>f, 42 | _->None 43 | } 44 | ] 45 | 46 | 47 | (* ::Subsubsection::Closed:: *) 48 | (*AppNewTestingNotebook*) 49 | 50 | 51 | 52 | AppNewTestingNotebook[app_, name_:"Testing.nb", ops:OptionsPattern[]]:= 53 | NotebookPut[ 54 | Notebook[ 55 | {}, 56 | StyleDefinitions-> 57 | FrontEnd`FileName[{"MUnit"}, "MUnit.nb",CharacterEncoding->"UTF-8"], 58 | ops, 59 | NotebookFileName-> 60 | AppPath[app, "Resources", "Testing", name] 61 | ] 62 | ] 63 | 64 | 65 | (* ::Subsubsection::Closed:: *) 66 | (*AppListTests*) 67 | 68 | 69 | 70 | AppListTests[app_]:= 71 | With[{nb=AppFindTestingNotebook[app]}, 72 | 73 | ] 74 | 75 | 76 | End[]; 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /Dependencies/BTools/PacletIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/PacletIcon.png -------------------------------------------------------------------------------- /Dependencies/BTools/PacletIconBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/PacletIconBig.png -------------------------------------------------------------------------------- /Dependencies/BTools/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # BTools 4 | 5 | [![version](http://img.shields.io/badge/version-2.1.22-orange.svg)](https://github.com/b3m2a1/mathematica-BTools/PacletInfo.m) [![license](http://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT) 6 | 7 | The BTools application is a multi-use Mathematica application, largely devoted to simplifying the development process. The application has an autoloader primary file that exposed package-scoped helper functions and loads all of the packages in the [Packages](Packages) directory into the main context. 8 | 9 | --- 10 | 11 | 12 | 13 | # Installation 14 | 15 | The easiest way to install these packages is using a paclet server installation: 16 | 17 | ```mathematica 18 | PacletInstall[ 19 | "BTools", 20 | "Site"-> 21 | "http://www.wolframcloud.com/objects/b3m2a1.paclets/PacletServer" 22 | ] 23 | ``` 24 | 25 | If you've already installed it you can update using: 26 | 27 | ```mathematica 28 | PacletUpdate[ 29 | "BTools", 30 | "Site"-> 31 | "http://www.wolframcloud.com/objects/b3m2a1.paclets/PacletServer" 32 | ] 33 | ``` 34 | 35 | Alternately you can download this repo as a ZIP file and put extract it in ```$UserBaseDirectory/Applications``` 36 | 37 | --- 38 | 39 | Examples and usages can be found on the [Wiki](https://github.com/b3m2a1/mathematica-BTools/wiki) 40 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Data/FrontEnd/ResourceRules.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | { 4 | "NotebookTemplatingExpressions","NotebookTemplatingBitmaps","NotebookTemplatingStrings", 5 | "PredictiveInterfaceStrings","PredictiveInterfaceExpressions","PredictiveInterfaceBitmaps", 6 | "WAExpressions","WABitmaps","WAStrings", 7 | "WALocalizableBitmaps","FEBitmaps","ActivationDialog", 8 | "DeployCDFDialog","PreferencesDialog","ImportDialogs", 9 | "ExportDialogs","HistoryOverviewDialog","GraphicsInspectorDialog", 10 | "HeadersFootersDialog","InsertCitationDialog","SystemInformationDialog", 11 | "LicenseFailureDialog","WelcomeScreen","CloudLoginDialog", 12 | "CloudDialogs","MathematicaClosingDialog","LicensingErrors", 13 | "WolframCloudLoginErrors","RGBColorValueSelectorStrings","GrayLevelValueSelectorStrings", 14 | "CMYKColorValueSelectorStrings","HueValueSelectorStrings","LABColorValueSelectorStrings", 15 | "LCHColorValueSelectorStrings","LUVColorValueSelectorStrings","XYZColorValueSelectorStrings", 16 | "ColorSchemeChooserStrings","LocalizedBitmaps","twoByteSyntaxCharacterAutoReplacementsTable", 17 | "FEStrings","Image3DEditModeMenu","ImageEditModeMenu", 18 | "undoInformationDescriptionText","SlideshowToolbarText","HelpToolbarText", 19 | "PackageToolbarText","CompatibilityToolbarText","SecurityToolbarText", 20 | "CodeCaptionsText","DynamicUpdatingToolbarText","MessageToolbarText", 21 | "StylesheetToolbarText","ProductSpecificToolbarText","VersionedStylesheetToolbar", 22 | "WolframCloudSyncToolbar","TemplateBoxTooltips","FindReplaceDialog", 23 | "DebuggerDialogs","FEExpressions","StylesheetThumbnails", 24 | "CloudLoginDialogStrings" 25 | } 26 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Data/FrontEnd/ResourceStrings.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | { 4 | "CMYKColorValueSelector", 5 | "ColorSchemeSelector", 6 | "CommonFrontEndInit", 7 | "ContextMenus", 8 | "FEKernelInit", 9 | "FontMap", 10 | "GetFEKernelInit", 11 | "GrayLevelColorValueSelector", 12 | "HueColorValueSelector", 13 | "LABColorValueSelector", 14 | "LCHColorValueSelector", 15 | "LUVColorValueSelector", 16 | "RGBColorValueSelector", 17 | "XYZColorValueSelector" 18 | } 19 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Icons/PacletIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Icons/PacletIcon.png -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Icons/PacletSiteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Icons/PacletSiteIcon.png -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Images/GoogleOAuthExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Images/GoogleOAuthExample.png -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/breadcrumbs.html: -------------------------------------------------------------------------------- 1 | 2 | 26 | 27 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/comments.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 24 | 27 |
28 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/config/icons.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "type"->"link", 4 | "rel"->"apple-touch-icon", 5 | "href"->"apple-touch-icon.png", 6 | "sizes"->"180x180" 7 | |>, 8 | <| 9 | "type"->"link", 10 | "rel"->"icon", 11 | "href"->"favicon-32x32.png", 12 | "sizes"->"32x32" 13 | |>, 14 | <| 15 | "type"->"link", 16 | "rel"->"icon", 17 | "href"->"favicon-16x16.png", 18 | "sizes"->"16x16" 19 | |>, 20 | <| 21 | "type"->"link", 22 | "rel"->"manifest", 23 | "href"->"manifest.json" 24 | |> 25 | } 26 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/config/links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"https://www.wolfram.com", 4 | "body"->"Wolfram" 5 | |> 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/config/page_links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"pages/about.html", 4 | "body"->"About" 5 | |>, 6 | <| 7 | "href"->"tags.html", 8 | "body"->"Tags" 9 | |>, 10 | <| 11 | "href"->"authors.html", 12 | "body"->"Authors" 13 | |> 14 | } 15 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/config/social_links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"https://mathematica.stackexchange.com", 4 | "body"->"StackExchange" 5 | |> 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/config/stylesheets.m: -------------------------------------------------------------------------------- 1 | { 2 | "bootstrap.css", 3 | "font-awesome.css", 4 | "https://fonts.googleapis.com/css?family=Source+Code+Pro", 5 | "https://reference.wolfram.com/language-assets/css/special-styles.css", 6 | "common.css", 7 | "style.css" 8 | } 9 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/copyable_input.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function() { 2 | jQuery('.ce-notebook-expression').addClass('ce-white ce-colorTipContainer').append('Copy input'); 3 | 4 | jQuery('.ce-colorTipContainer').hover( 5 | function() { 6 | jQuery(this).find('.ce-colorTip').show(); 7 | }, 8 | function() { 9 | jQuery(this).find('.ce-colorTip').hide().find('.ce-content').text('Copy input'); 10 | }); 11 | 12 | jQuery('.ce-colorTipContainer').click(function() { 13 | jQuery(this).find('.ce-colorTip .ce-content').text('Copied!'); 14 | jQuery(this).find('textarea').css('display', 'block').select(); 15 | document.execCommand('copy'); 16 | jQuery(this).find('textarea').css('display', 'none'); 17 | }); 18 | }); 19 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/createRSSElementDescription.m: -------------------------------------------------------------------------------- 1 | StringJoin@ 2 | Replace[ 3 | Characters@ 4 | StringTrim@ 5 | StringDelete[ 6 | Replace[#["Summary"], Except[_String]->""], 7 | _?(Not@*PrintableASCIIQ) 8 | ], 9 | <| 10 | "&" -> "&", "<" -> "<", ">" -> ">", 11 | "\"" -> """, "'" -> "'" 12 | |>, 13 | {1} 14 | ]& 15 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/embedNotebook.m: -------------------------------------------------------------------------------- 1 | XMLTemplate[File["include/lib/templates/cloud-notebook.html"]]@ 2 | <|Flatten@{##}|>& 3 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/extractBody.m: -------------------------------------------------------------------------------- 1 | StringTrim[ 2 | ExportString[ 3 | FirstCase[#, XMLElement["body", _, _], #, Infinity], 4 | "XML" 5 | ], 6 | ""|"" 7 | ]& 8 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/getIndexListingBy.m: -------------------------------------------------------------------------------- 1 | Select[ 2 | Replace[ 3 | $$templateLib["templateArgumentLookup"][#, "IndexListing"], 4 | Except[_List]:>$$templateLib["templateArgumentLookup"][#, "Articles"] 5 | ], 6 | #2 7 | ]& 8 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/getPageTitle.m: -------------------------------------------------------------------------------- 1 | With[{ 2 | tempArgs= 3 | (Join@@ 4 | Flatten@{ 5 | #, 6 | Replace[Templating`$TemplateArgumentStack,{ 7 | {___,a_}:>a, 8 | _-><||> 9 | }] 10 | }) 11 | }, 12 | Replace[tempArgs["Title"], 13 | Except[_String]:> 14 | FileBaseName[tempArgs["FilePath"]] 15 | ] 16 | ]& 17 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/getSiteLinks.m: -------------------------------------------------------------------------------- 1 | Get[FileNameJoin@{"include", "config", "links.m"}]& 2 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/getSiteName.m: -------------------------------------------------------------------------------- 1 | With[{ 2 | tempArgs= 3 | (Join@@ 4 | Flatten@{ 5 | #, 6 | Replace[ 7 | Templating`$TemplateArgumentStack, 8 | { 9 | {___,a_}:>a, 10 | _-><||> 11 | } 12 | ] 13 | }) 14 | }, 15 | Replace[ 16 | tempArgs["SiteName"], 17 | Except[_String]:> 18 | URLParse[tempArgs["SiteURL"], "Path"][[-1]] 19 | ] 20 | ]& 21 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/getTemplateArguments.m: -------------------------------------------------------------------------------- 1 | (Join@@ 2 | Flatten@{ 3 | #, 4 | Replace[ 5 | $$templateVars, 6 | Except[_Association]-><||> 7 | ], 8 | Replace[Templating`$TemplateArgumentStack, 9 | { 10 | {___,a_}:>a, 11 | _-><||> 12 | } 13 | ] 14 | })& 15 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/getTemplateArgumentsNoArg.m: -------------------------------------------------------------------------------- 1 | (Merge[ 2 | Flatten@{ 3 | Templating`$TemplateArguments, 4 | Replace[Templating`$TemplateArgumentStack,{ 5 | {___,a_}:>a, 6 | _-><||> 7 | }] 8 | }, 9 | First 10 | ])& 11 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/getTemplateVariable.m: -------------------------------------------------------------------------------- 1 | Lookup[ 2 | (Join@@ 3 | Flatten@{ 4 | #, 5 | Replace[Templating`$TemplateArgumentStack,{ 6 | {___,a_}:>a, 7 | _-><||> 8 | }] 9 | }), 10 | #2 11 | ]& 12 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/loadTemplateLib.m: -------------------------------------------------------------------------------- 1 | With[{Templating`lib`$$libdir=DirectoryName[$InputFileName]}, 2 | Templating`lib`$$templateLib[f_]:= 3 | Templating`lib`$$templateLib[f]= 4 | Internal`WithLocalSettings[ 5 | Begin["Templating`lib`Private`"], 6 | Get@FileNameJoin[{Templating`lib`$$libdir,f<>".m"}], 7 | End[] 8 | ] 9 | ] 10 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeBlogrollLinkList.m: -------------------------------------------------------------------------------- 1 | TemplateApply@ 2 | TemplateObject[{ 3 | "" 21 | }, 22 | InsertionFunction->"HTMLFragment", 23 | CombinerFunction -> Function@StringRiffle[#,"\n"] 24 | ]& 25 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteElements.m: -------------------------------------------------------------------------------- 1 | With[{args=#2}, 2 | TemplateSequence[ 3 | If[ValueQ@$$siteElementTemplate//TrueQ, 4 | $$siteElementTemplate, 5 | $$siteElementTemplate= 6 | XMLTemplate[File@"include/lib/templates/siteElement.html"] 7 | ], 8 | Merge[{args, #}, Last]&/@# 9 | ] 10 | ]& 11 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteHyperlink.m: -------------------------------------------------------------------------------- 1 | $$templateLib["makeSiteElements"][ 2 | Merge[{"body"->" ","type"->"a",#},Replace[{___,l_}:>l]]&/@#, 3 | #2 4 | ]& 5 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteIcons.m: -------------------------------------------------------------------------------- 1 | $$templateLib["makeSiteElements"][ 2 | Merge[{"rel"->"icon",#,"type"->"link"},Last]&/@#, 3 | #2 4 | ]& 5 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteImg.m: -------------------------------------------------------------------------------- 1 | $$templateLib["makeSiteElements"][ 2 | Merge[{#,"type"->"img"},Last]&/@#, 3 | #2 4 | ]& 5 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteLink.m: -------------------------------------------------------------------------------- 1 | $$templateLib["makeSiteElements"][ 2 | Merge[{#,"type"->"link"},Last]&/@#, 3 | #2 4 | ]& 5 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteLinkList.m: -------------------------------------------------------------------------------- 1 | With[{vars={##}}, 2 | TemplateApply@ 3 | TemplateObject[ 4 | { 5 | TemplateApply[ 6 | "<`ListType` class=\"`ListClass`\" id=\"`ListID`\">", 7 | Join[ 8 | <| 9 | "ListType"->"ul", 10 | "ListClass"->"list-inline row", 11 | "ListID"->"" 12 | |>, 13 | If[Length@vars==2, <||>, vars[[1]]] 14 | ] 15 | ], 16 | TemplateSequence[ 17 | XMLTemplate@ 18 | TemplateApply[ 19 | "
  • \n
  • ", 20 | Join[ 21 | <| 22 | "ItemClass"->"list-inline-item" 23 | |>, 24 | If[Length@vars==2, <||>, vars[[1]]] 25 | ] 26 | ], 27 | List@ 28 | TemplateApply[ 29 | $$templateLib["makeSiteElements"][ 30 | Merge[{#, "type"->"a"}, Last]&/@If[Length@vars==2, vars[[1]], vars[[2]]], 31 | If[Length@vars==2, vars[[2]], vars[[3]]] 32 | ], 33 | If[Length@vars==2, vars[[2]], vars[[3]]] 34 | ] 35 | ], 36 | TemplateApply[ 37 | "", 38 | Join[ 39 | <| 40 | "ListType"->"ul" 41 | |>, 42 | If[Length@vars==2, <||>, vars[[1]]] 43 | ] 44 | ] 45 | }, 46 | InsertionFunction->"HTMLFragment", 47 | CombinerFunction -> Function@StringRiffle[#,"\n"] 48 | ] 49 | ]& 50 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteStylesheet.m: -------------------------------------------------------------------------------- 1 | $$templateLib["makeSiteElements"][ 2 | Merge[{ 3 | "rel"->"stylesheet", 4 | If[!StringStartsQ[#["href"], "http"], 5 | ReplacePart[#, 6 | "href"-> 7 | URLBuild[{"theme","css", #["href"]}] 8 | ], 9 | # 10 | ], 11 | "type"->"link" 12 | }, 13 | Last 14 | ]&/@Replace[#,l_List:>Replace[l,s_String:><|"href"->s|>,1]], 15 | #2 16 | ]& 17 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteTagLinks.m: -------------------------------------------------------------------------------- 1 | With[{args=#2,tags=StringTrim@If[StringQ[#],StringSplit[#,","],#]}, 2 | If[Length[tags]>0, 3 | $$templateLib["makeSiteHyperlink"][ 4 | Append[ 5 | <| 6 | "href"-> 7 | URLBuild@{ 8 | "tags", 9 | #<>".html" 10 | }, 11 | "body"->#<>", " 12 | |>&/@Most@tags, 13 | <| 14 | "href"-> 15 | URLBuild@{ 16 | "tags", 17 | #<>".html" 18 | }, 19 | "body"-># 20 | |>&@Last[tags] 21 | ], 22 | #2 23 | ], 24 | "" 25 | ] 26 | ]& 27 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSocialLinkList.m: -------------------------------------------------------------------------------- 1 | TemplateApply@ 2 | TemplateObject[{ 3 | "" 21 | }, 22 | InsertionFunction->"HTMLFragment", 23 | CombinerFunction -> Function@StringRiffle[#,"\n"] 24 | ]& 25 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/nextPreviousButtons.m: -------------------------------------------------------------------------------- 1 | With[{ 2 | curr=#SourceFile 3 | }, 4 | With[ 5 | { 6 | nextObj=#NextObjectBy[curr, #test, #Templates[[1]]], 7 | prevObj=#PreviousObjectBy[curr, #test, #Templates[[1]]] 8 | }, 9 | XMLTemplate[File["include/lib/templates/next-previous.html"]]@ 10 | Join[ 11 | #, 12 | <| 13 | "NextPageURL"-> 14 | nextObj["URL"], 15 | "NextPageTitle"-> 16 | nextObj["Title"], 17 | "PreviousPageURL"-> 18 | prevObj["URL"], 19 | "PreviousPageTitle"-> 20 | prevObj["Title"] 21 | |> 22 | ] 23 | ] 24 | ]& 25 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/prepArticleInfo.m: -------------------------------------------------------------------------------- 1 | Function[ 2 | $$["ArticleInfoItems"]= 3 | Lookup[$$, 4 | "ArticleInfoItems", 5 | { 6 | "Date", 7 | "Modified", 8 | "Author", 9 | "Category", 10 | "Tags" 11 | } 12 | ]; 13 | $$["Article"]= 14 | If[AssociationQ@#, 15 | #, 16 | Merge[Select[#, OptionQ], Last] 17 | ]; 18 | $$["Date"]= 19 | Which[ 20 | DateObjectQ@$$["Article", "Date"], 21 | DateString[$$["Article", "Date"], "DateShort"], 22 | StringQ@$$["Article", "Date"], 23 | $$["Article", "Date"], 24 | True, 25 | None 26 | ]; 27 | $$["Modified"]= 28 | Which[ 29 | DateObjectQ@$$["Article", "Modified"], 30 | DateString[$$["Article", "Modified"], "DateShort"], 31 | StringQ@$$["Article", "Modified"], 32 | $$["Article", "Modified"], 33 | True, 34 | None 35 | ]; 36 | $$["Authors"]= 37 | Which[ 38 | ListQ@$$["Article", "Authors"], 39 | $$["Article", "Authors"], 40 | StringQ@$$["Article", "Authors"], 41 | {$$["Article", "Authors"]}, 42 | True, 43 | None 44 | ]; 45 | $$["Categories"]= 46 | Which[ 47 | ListQ@$$["Article", "Categories"], 48 | $$["Article", "Categories"], 49 | StringQ@$$["Article", "Categories"], 50 | {$$["Article", "Categories"]}, 51 | True, 52 | None 53 | ]; 54 | $$["Tags"]= 55 | Which[ 56 | ListQ@$$["Article", "Tags"], 57 | $$["Article", "Tags"], 58 | StringQ@$$["Article", "Tags"], 59 | {$$["Article", "Tags"]}, 60 | True, 61 | None 62 | ]; 63 | ] 64 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/reslotMissing.m: -------------------------------------------------------------------------------- 1 | With[{ 2 | tempArgs= 3 | (Join@@ 4 | Flatten@{ 5 | #, 6 | Replace[Templating`$TemplateArgumentStack,{ 7 | {___,a_}:>a, 8 | _-><||> 9 | }] 10 | }), 11 | expr= 12 | #2, 13 | tag= 14 | #3 15 | }, 16 | ReplaceAll[expr, 17 | { 18 | Missing[_, tag]:> 19 | tempArgs[tag] 20 | } 21 | ] 22 | ]& 23 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/sortIndexListingBy.m: -------------------------------------------------------------------------------- 1 | SortBy[ 2 | Replace[ 3 | $$templateLib["getTemplateArguments"][#]["IndexListing"], 4 | Except[{__}]:> $$templateLib["getTemplateArguments"][#]["Articles"] 5 | ], 6 | #2 7 | ]& 8 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/templateArgumentLookup.m: -------------------------------------------------------------------------------- 1 | Replace[ 2 | #@ 3 | Replace[#[#2], 4 | t_TemplateObject:> 5 | TemplateApply[t, #] 6 | ], 7 | { 8 | TemplateObject[{ 9 | Templating`Evaluator`PackagePrivate`apply[_, 10 | a_ 11 | ] 12 | }]:> 13 | Block[ 14 | { 15 | Templating`PackageScope`$TemplateEvaluate=True 16 | }, 17 | a 18 | ], 19 | TemplateObject[{s_, ___}]:>s 20 | } 21 | ]& 22 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/templates/includeComments.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/templates/next-previous.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 32 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/templates/pageLocalizedBlock.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | This defines block that applies to a given page via $$templateLib["getPageData"] 4 | 5 | 6 | 7 | 11 | 12 | If[Length@#PageData>0, 13 | StringJoin@ 14 | $$templateLib["reslotMissing"][#, #block, "PageData"], 15 | Sequence@@{} 16 | ] 17 | 18 | 19 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/templates/pagination.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | WebSiteBuild::nopag="pagination currently unsupported"; 4 | Message[WebSiteBuild::nopag] 5 | 6 | 7 | 8 | 9 | 10 |
    11 | 12 | 40 | 41 |
    42 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/templates/siteNameJoin.html: -------------------------------------------------------------------------------- 1 | 2 | With[{ 3 | f= 4 | Replace[#file, 5 | Except[_String]:> 6 | URLBuild@#file 7 | ] 8 | }, 9 | If[ 10 | URLParse[f,{"Scheme","Domain"}]==={None,None}&& 11 | !StringEndsQ[f,".com"|".org"|".edu"|".io"|".eu"|".fr"|".de"], 12 | StringTrim@ 13 | URLBuild@{ 14 | Replace[#SiteURL, Except[_String]:>""], 15 | f 16 | }, 17 | f 18 | ] 19 | ] 20 | 21 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/templates/varDefinedBlock.html: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/templates/varNotFalseBlock.html: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/templates/varNotTrueBlock.html: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/templates/varTrueBlock.html: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/varDefined.m: -------------------------------------------------------------------------------- 1 | With[{ 2 | tempArgs= 3 | $$templateLib["getTemplateArguments"][#] 4 | }, 5 | MatchQ[ 6 | $$templateLib["templateArgumentLookup"][tempArgs,"var"], 7 | Except[ 8 | _Missing|False|None|_String?(StringMatchQ[Whitespace])|"" 9 | ] 10 | ] 11 | ]& 12 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/varMatch.m: -------------------------------------------------------------------------------- 1 | With[{ 2 | tempArgs= 3 | (Join@@ 4 | Flatten@{ 5 | #, 6 | Replace[Templating`$TemplateArgumentStack,{ 7 | {___,a_}:>a, 8 | _-><||> 9 | }] 10 | }) 11 | }, 12 | MatchQ[ 13 | Replace[ 14 | tempArgs@ 15 | Replace[tempArgs["val"], 16 | t_TemplateObject:> 17 | TemplateApply[t,tempArgs] 18 | ], 19 | TemplateObject[{ 20 | Templating`Evaluator`PackagePrivate`apply[_, 21 | a_ 22 | ] 23 | }]:> 24 | Block[ 25 | { 26 | Templating`PackageScope`$TemplateEvaluate=True 27 | }, 28 | a 29 | ] 30 | ], 31 | Replace[ 32 | tempArgs@ 33 | Replace[tempArgs["pat"], 34 | t_TemplateObject:> 35 | TemplateApply[t,tempArgs] 36 | ], 37 | TemplateObject[{ 38 | Templating`Evaluator`PackagePrivate`apply[_, 39 | a_ 40 | ] 41 | }]:> 42 | Block[ 43 | { 44 | Templating`PackageScope`$TemplateEvaluate=True 45 | }, 46 | a 47 | ] 48 | ] 49 | ] 50 | ]& 51 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/varNotFalse.m: -------------------------------------------------------------------------------- 1 | With[{ 2 | tempArgs= 3 | (Join@@ 4 | Flatten@{ 5 | #, 6 | Replace[Templating`$TemplateArgumentStack,{ 7 | {___,a_}:>a, 8 | _-><||> 9 | }] 10 | }) 11 | }, 12 | Replace[ 13 | tempArgs@ 14 | Replace[tempArgs["var"], 15 | t_TemplateObject:> 16 | TemplateApply[t,tempArgs] 17 | ], 18 | TemplateObject[{ 19 | Templating`Evaluator`PackagePrivate`apply[_, 20 | a_ 21 | ] 22 | }]:> 23 | Block[ 24 | { 25 | Templating`PackageScope`$TemplateEvaluate=True 26 | }, 27 | a 28 | ] 29 | ]=!=False 30 | ]& 31 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/varNotTrue.m: -------------------------------------------------------------------------------- 1 | With[{ 2 | tempArgs= 3 | (Join@@ 4 | Flatten@{ 5 | #, 6 | Replace[Templating`$TemplateArgumentStack,{ 7 | {___,a_}:>a, 8 | _-><||> 9 | }] 10 | }) 11 | }, 12 | Replace[ 13 | tempArgs@ 14 | Replace[tempArgs["var"], 15 | t_TemplateObject:> 16 | TemplateApply[t,tempArgs] 17 | ], 18 | TemplateObject[{ 19 | Templating`Evaluator`PackagePrivate`apply[_, 20 | a_ 21 | ] 22 | }]:> 23 | Block[ 24 | { 25 | Templating`PackageScope`$TemplateEvaluate=True 26 | }, 27 | a 28 | ] 29 | ]=!=True 30 | ]& 31 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/varTrue.m: -------------------------------------------------------------------------------- 1 | With[{ 2 | tempArgs= 3 | (Join@@ 4 | Flatten@{ 5 | #, 6 | Replace[Templating`$TemplateArgumentStack,{ 7 | {___,a_}:>a, 8 | _-><||> 9 | }] 10 | }) 11 | }, 12 | TrueQ[ 13 | Replace[ 14 | tempArgs@ 15 | Replace[tempArgs["var"], 16 | t_TemplateObject:> 17 | TemplateApply[t,tempArgs] 18 | ], 19 | TemplateObject[{ 20 | Templating`Evaluator`PackagePrivate`apply["HTMLFragment", 21 | a_ 22 | ] 23 | }]:>a 24 | ] 25 | ] 26 | ]& 27 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/load_jQuery.html: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/mathjax.html: -------------------------------------------------------------------------------- 1 | 5 | 14 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/next-previous.html: -------------------------------------------------------------------------------- 1 | 2 | Throw["Not quite ready yet..."] 3 | $$templateLib["nextPreviousButtons"][ 4 | Append[#, 5 | "test"-> 6 | Replace[ 7 | #NextPreviousTest, 8 | Except[_Function]-> 9 | With[{nextPage=#NextPageTitle}] 10 | Function[ 11 | #Title==nextPage 12 | ] 13 | ] 14 | ] 15 | ] 16 | 17 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/page-footer.html: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/page-header.html: -------------------------------------------------------------------------------- 1 | 2 | PageHeader 3 | 4 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/pagination.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 26 | 27 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/primary-content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Content 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/related-posts.html: -------------------------------------------------------------------------------- 1 | 2 |
    3 |

    Related Posts

    4 | <* $$templateLib["makeSiteLinkList"][ 5 | <| 6 | "ListClass"->related-post-list, 7 | "ItemClass"->"related-post-list-item" 8 | |>, 9 | #RelatedPosts, 10 | # 11 | ] 12 | *> 13 |
    14 |
    15 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/rss.html: -------------------------------------------------------------------------------- 1 | 5 | 6 | <wolfram:expr>#IndexItem["Title"]</wolfram:expr> 7 | /#IndexItem["URL"] 8 | 9 | 10 | $$templateLib["createRSSElementDescription"][#IndexItem] 11 | 12 | 13 | /#IndexItem["URL"] 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/search.html: -------------------------------------------------------------------------------- 1 | 2 | 23 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/site-icons.html: -------------------------------------------------------------------------------- 1 | 2 | $$templateLib["makeSiteIcons"][ 3 | Replace[#Icons, 4 | Except[_List]:> 5 | Import[FileNameJoin@{"include","config","icons.m"}] 6 | ], 7 | # 8 | ] 9 | 10 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/site-stylesheets.html: -------------------------------------------------------------------------------- 1 | 2 | StyleSheets 3 | 4 | 5 | $$templateLib["makeSiteStylesheet"][ 6 | Replace[#StyleSheets,{ 7 | None->{}, 8 | Except[_List]:> 9 | Prepend[ 10 | Import[FileNameJoin@{"include","config","stylesheets.m"}], 11 | URLBuild@{ 12 | "pygments", 13 | Replace[#PygmentsStyle, 14 | Except[_String]:>"default" 15 | ]<>".min.css" 16 | } 17 | ] 18 | }], 19 | # 20 | ] 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/site-title.html: -------------------------------------------------------------------------------- 1 | 2 | <wolfram:slot id="PageTitle"> 3 | <wolfram:get path="include/lib/templates/varDefinedBlock.html"> 4 | <wolfram:slot id="var">Title</wolfram:slot> 5 | <wolfram:slot id="Title"><wolfram:slot id="Title"/></wolfram:slot> 6 | <wolfram:slot id="if"> 7 | <wolfram:slot id="Title"/> 8 | </wolfram:slot> 9 | <wolfram:slot id="else"> 10 | <wolfram:expr>$$templateLib["getSiteName"][#]</wolfram:expr> 11 | </wolfram:slot> 12 | </wolfram:get> 13 | </wolfram:slot> 14 | 15 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/css/common.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Mathematica'; 3 | src: url('../fonts/mathematica/Mathematica.eot'); 4 | src: url('../fonts/mathematica/Mathematica.eot?#iefix') format('embedded-opentype'), 5 | url('../fonts/mathematica/Mathematica.woff') format('woff'), 6 | url('../fonts/mathematica/Mathematica.ttf') format('truetype'); 7 | font-weight: normal; 8 | } 9 | 10 | @font-face { 11 | font-family: 'Mathematica'; 12 | src: url('../fonts/mathematica/Mathematica-Bold.eot'); 13 | src: url('../fonts/mathematica/Mathematica-Bold.eot?#iefix') format('embedded-opentype'), 14 | url('../fonts/mathematica/Mathematica-Bold.woff') format('woff'), 15 | url('../fonts/mathematica/Mathematica-Bold.ttf') format('truetype'); 16 | font-weight: bold; 17 | } 18 | 19 | @font-face { 20 | font-family: 'MathematicaMono'; 21 | src: url('../fonts/mathematica/MathematicaMono.eot'); 22 | src: url('../fonts/mathematica/MathematicaMono.eot?#iefix') format('embedded-opentype'), 23 | url('../fonts/mathematica/MathematicaMono.woff') format('woff'), 24 | url('../fonts/mathematica/MathematicaMono.ttf') format('truetype'); 25 | font-weight: normal; 26 | } 27 | 28 | @font-face { 29 | font-family: 'MathematicaMono'; 30 | src: url('../fonts/mathematica/MathematicaMono-Bold.eot'); 31 | src: url('../fonts/mathematica/MathematicaMono-Bold.eot?#iefix') format('embedded-opentype'), 32 | url('../fonts/mathematica/MathematicaMono-Bold.woff') format('woff'), 33 | url('../fonts/mathematica/MathematicaMono-Bold.ttf') format('truetype'); 34 | font-weight: bold; 35 | } 36 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Themes/template_lib/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Themes/template_lib/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Themes/template_lib/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Themes/template_lib/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Themes/template_lib/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Themes/template_lib/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Themes/template_lib/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Themes/template_lib/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Themes/template_lib/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/fonts/mathematica/Mathematica-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Themes/template_lib/static/fonts/mathematica/Mathematica-Bold.woff -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/fonts/mathematica/Mathematica.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Themes/template_lib/static/fonts/mathematica/Mathematica.woff -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/fonts/mathematica/MathematicaMono-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Themes/template_lib/static/fonts/mathematica/MathematicaMono-Bold.woff -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/fonts/mathematica/MathematicaMono.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/BTools/Resources/Themes/template_lib/static/fonts/mathematica/MathematicaMono.woff -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/prettify/styles/prettify-mma.min.css: -------------------------------------------------------------------------------- 1 | .pln{color:#326ab3}@media screen{.str{color:#833}.mma_msg{color:#833;font-style:italic}.mma_use{color:#833;font-weight:bold}.mma_iot{color:#555;font-weight:bold}.atn{color:#326ab3;font-weight:bold}.com{color:#555}.kwd{color:#000}.atv{color:#060;font-style:italic}.atn{color:#326ab3;font-weight:bold}.tag{color:#000;font-weight:bold}.lit{color:#833}.pln{color:#326ab3}.pun{color:#000}}@media print,projection{.str,.use,.msg{color:#833}.com{color:#555}.kwd{color:#000;font-weight:bold}.atv{color:#060;font-style:italic}.tag{color:#000;font-weight:bold}.lit{color:#833}.mma_use{color:#833;font-weight:bold}.mma_msg{color:#833;font-style:italic}.mma_iot{color:#555;font-weight:bold}.atn{color:#326ab3;font-weight:bold}.pun{color:#000}}pre.prettyprint{background:#EEE;padding:20px}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/article.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | | 5 | SiteName 6 | 7 | 8 | 9 | 10 | 11 | URLParse[#SiteURL,"Path"][[-1]] 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | Summary 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
    29 |
    30 | 31 |
    32 |
    33 | 34 | 35 | 36 |
    37 | 38 |
    39 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/author.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | | $$templateLib["getSiteName"][#] 5 | 6 | 7 | 8 | Author: 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/authors.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Authors 5 | 6 | 7 | 8 | Authors 9 | 10 | 11 | 12 | 13 | 14 | 15 | 19 | 20 | 21 | 22 |
    16 | 17 | #["Author"] 18 | Length@#["Articles"]
    23 |
    24 | 25 |
    26 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/categories.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Categories 5 | 6 | 7 | 8 | Categories 9 | 10 | 11 | 12 | 13 | 14 | 15 | 19 | 20 | 21 | 22 |
    16 | 17 | #["Category"] 18 | Length@#["Articles"]
    23 |
    24 | 25 |
    26 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/category.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | | $$templateLib["getSiteName"][#] 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/comments.html: -------------------------------------------------------------------------------- 1 | 2 |
    3 |
    4 | 24 | 27 |
    28 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/config/icons.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "type"->"link", 4 | "rel"->"apple-touch-icon", 5 | "href"->"apple-touch-icon.png", 6 | "sizes"->"180x180" 7 | |>, 8 | <| 9 | "type"->"link", 10 | "rel"->"icon", 11 | "href"->"favicon-32x32.png", 12 | "sizes"->"32x32" 13 | |>, 14 | <| 15 | "type"->"link", 16 | "rel"->"icon", 17 | "href"->"favicon-16x16.png", 18 | "sizes"->"16x16" 19 | |>, 20 | <| 21 | "type"->"link", 22 | "rel"->"manifest", 23 | "href"->"manifest.json" 24 | |> 25 | } 26 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/config/links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"https://www.wolfram.com", 4 | "body"->"Wolfram" 5 | |> 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/config/page_links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"pages/about.html", 4 | "body"->"About" 5 | |>, 6 | <| 7 | "href"->"tags.html", 8 | "body"->"Tags" 9 | |>, 10 | <| 11 | "href"->"authors.html", 12 | "body"->"Authors" 13 | |> 14 | } 15 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/config/social_links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"https://mathematica.stackexchange.com", 4 | "body"->"StackExchange" 5 | |> 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/config/stylesheets.m: -------------------------------------------------------------------------------- 1 | { 2 | "bootstrap.css", 3 | "font-awesome.css", 4 | "https://fonts.googleapis.com/css?family=Source+Code+Pro", 5 | "https://reference.wolfram.com/language-assets/css/special-styles.css", 6 | "common.css", 7 | "style.css" 8 | } 9 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/pagination.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 27 |
    28 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/rss.html: -------------------------------------------------------------------------------- 1 | 5 | 6 | <wolfram:expr>#IndexItem["Title"]</wolfram:expr> 7 | /#IndexItem["URL"] 8 | 9 | 10 | $$templateLib["createRSSElementDescription"][#IndexItem] 11 | 12 | 13 | /#IndexItem["URL"] 14 | <*#IndexItem["Modified"]*> 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/search.html: -------------------------------------------------------------------------------- 1 | 2 | 23 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/page.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Summary 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 | 22 | 23 | $$templateLib["getPageTitle"] 24 | | 25 | $$templateLib["getSiteName"][#] 26 | 27 | 28 | 29 | 30 |
    31 |
    32 | 33 |
    34 |
    35 |
    36 | 37 |
    38 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/redirect.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | Redirecting... | 18 | $$templateLib["getSiteName"][#] 19 | 20 | 21 | 22 | 23 | Redirecting to `RedirectURL` 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/rss_feed.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | This generates the rss_feed for the page 4 | 5 | 6 | 7 | 8 | 9 | <wolfram:slot id="SiteTitle"/> 10 | 11 | 12 | 13 | /favicon-32x32.png 14 | <wolfram:slot id="SiteTitle"/> 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/tag.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Articles | $$templateLib["getSiteName"][#] 5 | 6 | 7 | 8 | Tagged: 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/tags.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tags 5 | 6 | 7 | 8 | Tags 9 | 10 | 11 | 12 | 13 | 14 | 15 | 19 | 20 | 21 | 22 |
    16 | 17 | #["Tag"] 18 | Length@#["Articles"]
    23 |
    24 | 25 |
    26 | -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/tipuesearch/tipuesearch_content.js: -------------------------------------------------------------------------------- 1 | 2 | var tipuesearch; 3 | $.getJSON(search_SiteURL+"/theme/search/search_index.json", 4 | function(data) { tipuesearch = data } 5 | ); 6 | 7 | var tipuesearch_options; 8 | $.getJSON(search_SiteURL+"/theme/search/search_options.json", 9 | function(data) { tipuesearch_options = data } 10 | ); 11 | -------------------------------------------------------------------------------- /Dependencies/Ems/Config/BundleInfo.m: -------------------------------------------------------------------------------- 1 | (* Created with the Wolfram Language : www.wolfram.com *) 2 | {"RemovePaths" -> {"Private", "project", "GitHub", ".git"}, 3 | "RemovePatterns" -> {"Packages/*.nb", "Packages/*/*.nb", 4 | "Packages/*/*/*.nb", ".DS_Store"}} 5 | -------------------------------------------------------------------------------- /Dependencies/Ems/Config/LoadInfo.m: -------------------------------------------------------------------------------- 1 | { 2 | "PreLoad" -> {}, 3 | "Dependencies" -> {"BTools`"}, 4 | "DependencyContexts" -> { 5 | "BTools`", 6 | "BTools`External`", 7 | "BTools`Web`", 8 | "BTools`Web`Markdown`" 9 | }, 10 | "FEHidden" -> {}, 11 | "PackageScope" -> None, 12 | "Mode" -> "Dependency" 13 | } -------------------------------------------------------------------------------- /Dependencies/Ems/Ems.wl: -------------------------------------------------------------------------------- 1 | (* ::Subsection::Closed:: *) 2 | (*Temp Loading Flag Code*) 3 | 4 | 5 | Temp`PackageScope`EmsLoading`Private`$PackageLoadData= 6 | If[#===None, <||>, Replace[Quiet@Get@#, Except[_?OptionQ]-><||>]]&@ 7 | Append[ 8 | FileNames[ 9 | "LoadInfo."~~"m"|"wl", 10 | FileNameJoin@{DirectoryName@$InputFileName, "Config"} 11 | ], 12 | None 13 | ][[1]]; 14 | Temp`PackageScope`EmsLoading`Private`$PackageLoadMode= 15 | Lookup[Temp`PackageScope`EmsLoading`Private`$PackageLoadData, "Mode", "Primary"]; 16 | Temp`PackageScope`EmsLoading`Private`$DependencyLoad= 17 | TrueQ[Temp`PackageScope`EmsLoading`Private`$PackageLoadMode==="Dependency"]; 18 | 19 | 20 | (* ::Subsection:: *) 21 | (*Main*) 22 | 23 | 24 | If[Temp`PackageScope`EmsLoading`Private`$DependencyLoad, 25 | If[!TrueQ[Evaluate[Symbol["`Ems`PackageScope`Private`$LoadCompleted"]]], 26 | Get@FileNameJoin@{DirectoryName@$InputFileName, "EmsLoader.wl"} 27 | ], 28 | If[!TrueQ[Evaluate[Symbol["Ems`PackageScope`Private`$LoadCompleted"]]], 29 | <400, 60 | Message[Ems::badreq, StringReplace[res["Message"], "\n"->" "]]; 61 | $Failed, 62 | True, 63 | res["Content"] 64 | ] 65 | 66 | 67 | 68 | End[]; 69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Icons/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Icons/banner.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Icons/banner_tall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Icons/banner_tall.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Icons/favicon-16x16.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Icons/favicon-32x32.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/SiteConfig.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* Created with the Wolfram Language : www.wolfram.com *) 4 | { 5 | "SiteName"->"Blog", 6 | (*"SiteCreator"\[Rule]...,*) 7 | "Theme"->"bootstrap-blog", 8 | "BootstrapTheme"->"mma", 9 | (*"IncludeSidebar"->True,*) 10 | (*"SiteLogo"\[Rule]"site-logo.png",*) 11 | (*"BannerImage"->"banner.png",*) 12 | (*"BannerHeight"\[Rule]Scaled[.2],*) 13 | (*"PrettyPrint"->True,*)(* use prettify.js as a code highlighter *) 14 | (*"CodeLanguage"->"mma",*)(* use the given language in prettify *) 15 | (*"PatchFonts"->True,*)(* use Mathematica fonts for special symbols*) 16 | (*"SplitInOut"->True,*)(* split in and out code *) 17 | (*"AttachIDs"->True,*)(* add IDs to nodes based on type *) 18 | (*"EnableSearch"->True,*)(* use tipue search *) 19 | (*"GoogleAnalytics"->"UA-000000000-0",*)(* link to Google analytics *) 20 | (*"DisqusSiteName"->"..."*)(* use the given Disqus site for comments *) 21 | (*"ContentFluid"\[Rule]True,*) 22 | (*"ContentClass"\[Rule]"well",*) 23 | (*"SidebarClass"\[Rule]"panel",*) 24 | (*"NavbarInvert"\[Rule]True,*) 25 | "DeployOptions"-> 26 | { 27 | (*CloudConnect->"DeploymentsAccount"*)(* connect before deployment*) 28 | }, 29 | "BuildOptions"-> 30 | { 31 | (*"SearchPageOptions"-> 32 | { 33 | "Options"->{"WholeWords"->False} 34 | }*)(* options for tipue search *) 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/content/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Templates/blog/content/favicon-16x16.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/content/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Templates/blog/content/favicon-32x32.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/content/pages/About.md: -------------------------------------------------------------------------------- 1 | Title: About 2 | Date: 2017-01-01 00:00:00 3 | Modified: 2017-01-01 00:00:00 4 | Slug: about 5 | 6 | This is a website made with Mathematica 7 | 8 | It was built via the [Ems](https://github.com/b3m2a1/Ems) package. -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/content/posts/Post #1.md: -------------------------------------------------------------------------------- 1 | Title: First Post 2 | Authors: Au T. Hor 3 | Categories: Miscellaneous 4 | Date: 2017-01-01 00:00:00 5 | Modified: 2017-01-01 00:00:00 6 | Slug: first-post 7 | Tags: misc 8 | 9 | This is a sample post. 10 | 11 | Add content here. Change the metadata for the post above. 12 | 13 | Check the style list for the entire set of supported styles 14 | 15 | Input style cells will be dropped 16 | 17 | This is a post, so article.html is the theme template for it. -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/content/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Templates/blog/content/site-logo.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Templates/docs/content/banner.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Templates/docs/content/favicon-16x16.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Templates/docs/content/favicon-32x32.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/guide/Guide.md: -------------------------------------------------------------------------------- 1 | Title: Guide 2 | built: {2018, 11, 18, 21, 15, 38.266750} 3 | context: Test` 4 | Date: {2018, 11, 18, 21, 15, 38.266750} 5 | history: 11.3,, 6 | index: True 7 | keywords: 8 | label: Guide 9 | language: en 10 | Modified: 2018-11-19 00:06:43 11 | paclet: Mathematica 12 | specialkeywords: 13 | status: None 14 | summary: 15 | synonyms: 16 | tabletags: 17 | title: Automatic 18 | titlemodifier: 19 | tutorialcollectionlinks: 20 | type: Guide 21 | uri: Test/ref/Guide 22 | windowtitle: Automatic 23 | 24 | 25 | 26 | # Guide Name 27 | 28 | guide description 29 | 30 | --- 31 | 32 | Description 33 | 34 | [```Function```](/ref/Function.html) — the first function 35 | 36 | [```Function1```](/ref/Function1.html) — the second function 37 | 38 | [```Function2```](/ref/Function2.html) — the third function 39 | 40 | --- 41 | 42 | 43 | 44 | ## Related 45 | 46 | * [Link 1](https://google.com/) 47 | 48 | * [Link 2](https://paclets.github.io/PacletServer) -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/pages/About.md: -------------------------------------------------------------------------------- 1 | Title: About 2 | Date: 2017-01-01 00:00:00 3 | Modified: 2017-01-01 00:00:00 4 | Slug: about 5 | 6 | This is a Mathematica documentation website. It provides a collection of ref pages, guides, and tutorials that will help with using the packages at hand. The source notebooks from which it was built may also be used in the Mathematica DocumentationCenter automatically. 7 | 8 | Every ref, tutorial, and guide page, along with providing text and code, has an embedded notebook at the bottom for testing out simple commands. 9 | 10 | Similar websites may be built using the [SimpleDocs](https://github.com/b3m2a1/SimpleDocs) package. 11 | 12 | More info on the construction or usage of this may be obtained by contacting [the creator of the package](mailto:b3m2a1%40gmail.com) . -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/ref/Function.md: -------------------------------------------------------------------------------- 1 | Title: Function 2 | built: {2018, 11, 18, 16, 34, 21.977839} 3 | context: Test` 4 | Date: {2018, 11, 18, 16, 34, 21.977839} 5 | history: 11.3,, 6 | index: True 7 | keywords: 8 | label: Function 9 | language: en 10 | Modified: 2018-11-19 00:07:36 11 | paclet: Mathematica 12 | specialkeywords: 13 | status: None 14 | summary: 15 | synonyms: 16 | tabletags: 17 | title: Function 18 | titlemodifier: 19 | tutorialcollectionlinks: 20 | type: Symbol 21 | uri: Test/ref/Function 22 | windowtitle: Function 23 | WorkflowDockedCell: 24 | 25 | 26 | 27 | # Function 28 | 29 | Function[arg1,arg2,...] 30 | 31 | description 32 | 33 | 34 | 35 | ## Details 36 | 37 | * Details item 38 | 39 | * Details subitem 40 | 41 | 42 | 43 | ## Examples 44 | 45 | ### Basic Examples 46 | 47 | Description 48 | 49 | Function[arg1,arg2,...] 50 | 51 | (*Out:*) 52 | 53 | result 54 | 55 | 56 | 57 | ## Related 58 | 59 | [```Function1```](/ref/Function1.html) | [```Function2```](/ref/Function2.html) 60 | 61 | ### Guides 62 | 63 | * [Guide 1](/guide/Guide1.html) 64 | 65 | * [Guide 2](/guide/Guide2.html) 66 | 67 | ### Links 68 | 69 | * [Link 1](https://google.com/) 70 | 71 | * [Link 2](https://paclets.github.io/PacletServer) -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/ref/Function1.md: -------------------------------------------------------------------------------- 1 | Title: Function1 2 | built: {2018, 11, 18, 16, 34, 21.977839} 3 | context: Test` 4 | Date: {2018, 11, 18, 16, 34, 21.977839} 5 | history: 11.3,, 6 | index: True 7 | keywords: 8 | label: Function1 9 | language: en 10 | Modified: 2018-11-19 00:09:31 11 | paclet: Mathematica 12 | specialkeywords: 13 | status: None 14 | summary: 15 | synonyms: 16 | tabletags: 17 | title: Function1 18 | titlemodifier: 19 | tutorialcollectionlinks: 20 | type: Symbol 21 | uri: Test/ref/Function1 22 | windowtitle: Function1 23 | WorkflowDockedCell: 24 | 25 | 26 | 27 | # Function1 28 | 29 | Function1[arg1, arg2,...] 30 | 31 | description 32 | 33 | 34 | 35 | ## Details 36 | 37 | This is a different function from [```Function```](/ref/Function.html) 38 | 39 | 40 | 41 | ## Examples 42 | 43 | ### Basic Examples 44 | 45 | This is all code cells 46 | 47 | Function1[arg1, arg2, ...] 48 | 49 | (*Out:*) 50 | 51 | result 52 | 53 | 54 | 55 | ## Related 56 | 57 | [```Function2```](/ref/Function2.html) | [```Function```](/ref/Function.html) 58 | 59 | ### Guides 60 | 61 | * [Guide](/guide/Guide.html) 62 | 63 | ### Links 64 | 65 | * [Link 1](https://google.com/) 66 | 67 | * [Link 2](https://paclets.github.io/PacletServer) -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/ref/Function2.md: -------------------------------------------------------------------------------- 1 | Title: Function2 2 | built: {2018, 11, 18, 16, 34, 21.977839} 3 | context: Test` 4 | Date: {2018, 11, 18, 16, 34, 21.977839} 5 | history: 11.3,, 6 | index: True 7 | keywords: 8 | label: Function2 9 | language: en 10 | Modified: 2018-11-18 23:59:22 11 | paclet: Mathematica 12 | specialkeywords: 13 | status: None 14 | summary: 15 | synonyms: 16 | tabletags: 17 | title: Function2 18 | titlemodifier: 19 | tutorialcollectionlinks: 20 | type: Symbol 21 | uri: Test/ref/Function2 22 | windowtitle: Function2 23 | WorkflowDockedCell: 24 | 25 | 26 | 27 | # Function2 28 | 29 | Function2[arg1, arg2,...] 30 | 31 | description 32 | 33 | 34 | 35 | ## Details 36 | 37 | This is a different function from [```Function```](/ref/Function) 38 | 39 | 40 | 41 | ## Examples 42 | 43 | ### Basic Examples 44 | 45 | This is all code cells 46 | 47 | Function2[arg1, arg2, ...] 48 | 49 | (*Out:*) 50 | 51 | result 52 | 53 | 54 | 55 | ## Related 56 | 57 | [```Function1```](/ref/Function1) | [```Function```](/ref/Function) 58 | 59 | ### Guides 60 | 61 | * [Guide](/guide/Guide) 62 | 63 | ### Links 64 | 65 | * [Link 1](https://google.com/) 66 | 67 | * [Link 2](https://paclets.github.io/PacletServer) -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Templates/docs/content/site-logo.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/SiteConfig.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* Created with the Wolfram Language : www.wolfram.com *) 4 | { 5 | "SiteName"->"Portfolio", 6 | (*"SiteCreator"\[Rule]...,*) 7 | "Theme"->"bootstrap-portfolio", 8 | "BootstrapTheme"->"mma", 9 | (*"IncludeSidebar"->True,*) 10 | (*"SiteLogo"\[Rule]"site-logo.png",*) 11 | "BannerImage"->"banner_tall.png", 12 | "BannerHeight"->Scaled[.5], 13 | (*"PrettyPrint"->True,*)(* use prettify.js as a code highlighter *) 14 | (*"CodeLanguage"->"mma",*)(* use the given language in prettify *) 15 | (*"PatchFonts"->True,*)(* use Mathematica fonts for special symbols*) 16 | (*"SplitInOut"->True,*)(* split in and out code *) 17 | (*"AttachIDs"->True,*)(* add IDs to nodes based on type *) 18 | (*"EnableSearch"->True,*)(* use tipue search *) 19 | (*"GoogleAnalytics"->"UA-000000000-0",*)(* link to Google analytics *) 20 | (*"DisqusSiteName"->"..."*)(* use the given Disqus site for comments *) 21 | (*"ContentFluid"\[Rule]True,*) 22 | (*"ContentClass"\[Rule]"well",*) 23 | (*"SidebarClass"\[Rule]"panel",*) 24 | (*"NavbarInvert"\[Rule]True,*) 25 | "DeployOptions"-> 26 | { 27 | (*CloudConnect->"DeploymentsAccount"*)(* connect before deployment*) 28 | }, 29 | "BuildOptions"-> 30 | { 31 | (*"SearchPageOptions"-> 32 | { 33 | "Options"->{"WholeWords"->False} 34 | }*)(* options for tipue search *) 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Templates/portfolio/content/favicon-16x16.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Templates/portfolio/content/favicon-32x32.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/pages/About.md: -------------------------------------------------------------------------------- 1 | Title: About 2 | Date: 2017-01-01 00:00:00 3 | Modified: 2017-01-01 00:00:00 4 | Slug: about 5 | 6 | This is a website made with Mathematica 7 | 8 | It was built via the [Ems](https://github.com/b3m2a1/Ems) package. -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/posts/Project 1.md: -------------------------------------------------------------------------------- 1 | Title: Project 1 2 | Authors: Au T. Hor 3 | Categories: Miscellaneous 4 | Date: 2017-01-01 00:00:00 5 | Image: https://honesttopaws.com/wp-content/uploads/sites/5/2017/11/04-kitten-and-owl-best-friends.jpg 6 | Modified: 2017-01-01 00:00:00 7 | Slug: project-1 8 | Tags: misc 9 | 10 | This is a sample post. 11 | 12 | Add content here. Change the metadata for the post above. 13 | 14 | Check the style list for the entire set of supported styles 15 | 16 | Input style cells will be dropped 17 | 18 | This is a post, so article.html is the theme template for it. -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/posts/Project 3.md: -------------------------------------------------------------------------------- 1 | Title: Project 3 2 | Authors: Au T. Hor 3 | Categories: Miscellaneous 4 | Date: 2017-01-01 00:00:00 5 | EmbedNotebook: True 6 | Modified: 2017-01-01 00:00:00 7 | Slug: project-3 8 | Tags: misc 9 | 10 | ¯\_(ツ)_/¯ -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Templates/portfolio/content/site-logo.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/SiteConfig.wl: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | (* Created with the Wolfram Language : www.wolfram.com *) 4 | { 5 | "SiteName"->"Scroll", 6 | (*"SiteCreator"\[Rule]...,*) 7 | "Theme"->"bootstrap-single-page", 8 | "BootstrapTheme"->"mma", 9 | (*"IncludeSidebar"->True,*) 10 | (*"SiteLogo"\[Rule]"site-logo.png",*) 11 | (*"BannerImage"->"banner.png",*) 12 | (*"BannerHeight"\[Rule]Scaled[.2],*) 13 | (*"PrettyPrint"->True,*)(* use prettify.js as a code highlighter *) 14 | (*"CodeLanguage"->"mma",*)(* use the given language in prettify *) 15 | (*"PatchFonts"->True,*)(* use Mathematica fonts for special symbols*) 16 | (*"SplitInOut"->True,*)(* split in and out code *) 17 | (*"AttachIDs"->True,*)(* add IDs to nodes based on type *) 18 | (*"EnableSearch"->True,*)(* use tipue search *) 19 | (*"GoogleAnalytics"->"UA-000000000-0",*)(* link to Google analytics *) 20 | (*"DisqusSiteName"->"..."*)(* use the given Disqus site for comments *) 21 | "DeployOptions"-> 22 | { 23 | (*CloudConnect->"DeploymentsAccount"*)(* connect before deployment*) 24 | }, 25 | "BuildOptions"-> 26 | { 27 | "GenerateContent"->False, 28 | "GenerateAggregations"->False, 29 | "GenerateIndex"->True 30 | (*"SearchPageOptions"-> 31 | { 32 | "Options"->{"WholeWords"->False} 33 | }*)(* options for tipue search *) 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Templates/scroll/content/banner.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Templates/scroll/content/favicon-16x16.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Templates/scroll/content/favicon-32x32.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/pages/About.md: -------------------------------------------------------------------------------- 1 | Title: About 2 | Date: 2017-01-01 00:00:00 3 | Modified: 2017-01-01 00:00:00 4 | Slug: about 5 | 6 | This is a website made with Mathematica 7 | 8 | It was built via the [Ems](https://github.com/b3m2a1/Ems) package. -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/posts/Post #1.md: -------------------------------------------------------------------------------- 1 | Title: First Post 2 | Authors: Au T. Hor 3 | Categories: Miscellaneous 4 | Date: 2017-01-01 00:00:00 5 | Modified: 2017-01-01 00:00:00 6 | Slug: first-post 7 | Tags: misc 8 | 9 | This is a sample post. 10 | 11 | Add content here. Change the metadata for the post above. 12 | 13 | Check the style list for the entire set of supported styles 14 | 15 | Input style cells will be dropped 16 | 17 | This is a post, so article.html is the theme template for it. -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Templates/scroll/content/site-logo.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Daan Debie 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/typogrify.css: -------------------------------------------------------------------------------- 1 | .caps {font-size:.92em;} 2 | .amp {color:#666; font-size:1.05em;font-family:"Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua",serif; font-style:italic;} 3 | .dquo {margin-left:-.38em;} 4 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/static/js/bodypadding.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | $('body').css('padding-top', $('.navbar').height()+'px'); 3 | }); -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/archives.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block title %}{{ _('Archives') }} - {{ SITENAME }}{% endblock %} 3 | {% block breadcrumbs %} 4 | {% if DISPLAY_BREADCRUMBS %} 5 | 9 | {% endif %} 10 | {% endblock %} 11 | 12 | {% block content %} 13 |
    14 |

    {{ _('Archives for') }} {{ SITENAME }}

    15 |
    16 | {% for article in dates %} 17 |

    18 | 19 | {{ article.title }}{% if article.subtitle %} - {{ article.subtitle }}{% endif %} 20 |

    21 | {% endfor %} 22 |
    23 |
    24 | {% endblock %} 25 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/article_list.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 |
    11 |

    <*#Article["Title"]*>

    12 |
    13 |
    14 | 15 | 16 | <*#Article*> 17 | 18 | 19 |
    20 |
    21 |
    22 | <*#Article["Summary"]*> 23 |
    24 |
    25 |
    26 | 27 |
    28 | 29 |
    30 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/author.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | `Author` | $$templateLib["getSiteName"][#] 5 | 6 | 7 | 8 |

     `Author`

    9 |
    10 | 11 |
    12 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/authors.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Authors | <* $$templateLib["getSiteName"][#] *> 5 | 6 | 7 | 8 |

    Authors

    9 |
    10 | 11 | 12 |
    13 | 14 |
    15 |
    16 | 25 |
    26 |
    27 | 28 |

    29 | 30 | 31 | 32 | <*#ContentData[#Article]["Title"]*> 33 |

    34 |
    35 |
    36 |
    37 |
    38 | 39 |
    40 |
    41 | 42 |
    43 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/category.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | | $$templateLib["getSiteName"][#] 5 | 6 | 7 | 8 |

     `Category`

    9 |
    10 | 11 |
    12 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/aboutme.html: -------------------------------------------------------------------------------- 1 | 2 |
    3 | {% if AVATAR %} 4 |

    5 | 6 |

    7 | {% endif %} 8 | {% if ABOUT_ME %} 9 |

    10 | {{ _('About') }} {{ AUTHOR }}
    11 | {{ ABOUT_ME }} 12 |

    13 | {% endif %} 14 |
    15 |
    16 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/banner.html: -------------------------------------------------------------------------------- 1 | 37 | 38 | 51 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/config/icons.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "type"->"link", 4 | "rel"->"apple-touch-icon", 5 | "href"->"apple-touch-icon.png", 6 | "sizes"->"180x180" 7 | |>, 8 | <| 9 | "type"->"link", 10 | "rel"->"icon", 11 | "href"->"favicon-32x32.png", 12 | "sizes"->"32x32" 13 | |>, 14 | <| 15 | "type"->"link", 16 | "rel"->"icon", 17 | "href"->"favicon-16x16.png", 18 | "sizes"->"16x16" 19 | |>, 20 | <| 21 | "type"->"link", 22 | "rel"->"manifest", 23 | "href"->"manifest.json" 24 | |> 25 | } 26 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/config/links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"https://www.wolfram.com", 4 | "body"->"Wolfram" 5 | |> 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/config/page_links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"pages/about.html", 4 | "body"->"About" 5 | |>, 6 | <| 7 | "href"->"authors.html", 8 | "body"->"Authors" 9 | |>, 10 | <| 11 | "href"->"categories.html", 12 | "body"->"Categories" 13 | |>, 14 | <| 15 | "href"->"tags.html", 16 | "body"->"Tags" 17 | |> 18 | } 19 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/config/social_links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"https://mathematica.stackexchange.com", 4 | "body"->"StackExchange" 5 | |> 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/config/stylesheets.m: -------------------------------------------------------------------------------- 1 | { 2 | "common.css", 3 | "style.css" 4 | } 5 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/footer.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 |
    6 | 7 | Generated with Ems 8 | 9 |
    10 |
    11 |

    12 | 13 | Back to top 14 |

    15 |
    16 |
    17 |
    18 |
    19 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/sidebar.html: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/sidebar/links.html: -------------------------------------------------------------------------------- 1 | <* 2 | $$["SideBarLinks"]= 3 | Replace[ 4 | #Links, 5 | { 6 | None->{}, 7 | Except[_List]:> 8 | Replace[ 9 | Quiet@Import[FileNameJoin@{"include", "config", "links.m"}], 10 | Except[_List]->{} 11 | ] 12 | } 13 | ]; 14 | *> 15 | 16 | 17 | 18 |
  • 19 |

    Links

    20 | <* 21 | $$templateLib["makeSiteLinkList"][ 22 | <| 23 | "ListClass"->"list-group", 24 | "ItemClass"->"list-group-item", 25 | "ListID"->"links" 26 | |>, 27 | $$["SideBarLinks"], 28 | # 29 | ] 30 | *> 31 |
  • 32 | 33 |
    34 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/sidebar/recent_posts.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
  • 4 |

    "Recent Posts"

    5 | <* 6 | $$templateLib["makeSiteLinkList"][ 7 | <| 8 | "ListClass"->"list-group", 9 | "ItemClass"->"list-group-item", 10 | "ListID"->"links" 11 | |>, 12 | <|"href"->#URL, "title"->#Title|>&/@ 13 | MinimalBy[#Articles, #Modified&, #RecentPostCount], 14 | # 15 | ] 16 | *> 17 |
  • 18 | 19 |
    20 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/sidebar/social.html: -------------------------------------------------------------------------------- 1 | <* 2 | $$["SideBarSocialLinks"]= 3 | Replace[ 4 | #SocialLinks, 5 | { 6 | None->{}, 7 | Except[_List]:> 8 | Replace[ 9 | Quiet@Import[FileNameJoin@{"include", "config", "social_links.m"}], 10 | Except[_List]->{} 11 | ] 12 | } 13 | ]; 14 | *> 15 | 16 | 17 | 18 |
  • 19 |

    Social

    20 | <* 21 | $$templateLib["makeSiteLinkList"][ 22 | <| 23 | "ListClass"->"list-group", 24 | "ItemClass"->"list-group-item", 25 | "ListID"->"social" 26 | |>, 27 | $$["SideBarSocialLinks"], 28 | # 29 | ] 30 | *> 31 |
  • 32 | 33 |
    34 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/page.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | `Title` | <* $$templateLib["getSiteName"][#] *> 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
    13 |

    `Title`

    14 |
    15 | `Content` 16 |
    17 |
    18 |
    19 | 20 |
    21 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/tag.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | | $$templateLib["getSiteName"][#] 5 | 6 | 7 | 8 |

     `Tag`

    9 |
    10 | 11 |
    12 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/tags.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tags | $$templateLib["getSiteName"][#] 5 | 6 | 7 | 8 |

    Tags

    9 |
    10 | 11 | 12 |
    13 | 14 |
    15 |
    16 | 25 |
    26 |
    27 | 28 |

    29 | 30 | 31 | 32 | <*#ContentData[#Article]["Title"]*> 33 |

    34 |
    35 |
    36 |
    37 |
    38 |
    39 |
    40 |
    41 |
    42 | 43 |
    44 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Daan Debie 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/typogrify.css: -------------------------------------------------------------------------------- 1 | .caps {font-size:.92em;} 2 | .amp {color:#666; font-size:1.05em;font-family:"Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua",serif; font-style:italic;} 3 | .dquo {margin-left:-.38em;} 4 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/static/js/bodypadding.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | $('body').css('padding-top', $('.navbar').height()+'px'); 3 | }); -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/archives.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block title %}{{ _('Archives') }} - {{ SITENAME }}{% endblock %} 3 | {% block breadcrumbs %} 4 | {% if DISPLAY_BREADCRUMBS %} 5 | 9 | {% endif %} 10 | {% endblock %} 11 | 12 | {% block content %} 13 |
    14 |

    {{ _('Archives for') }} {{ SITENAME }}

    15 |
    16 | {% for article in dates %} 17 |

    18 | 19 | {{ article.title }}{% if article.subtitle %} - {{ article.subtitle }}{% endif %} 20 |

    21 | {% endfor %} 22 |
    23 |
    24 | {% endblock %} 25 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/author.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | `Author` | $$templateLib["getSiteName"][#] 5 | 6 | 7 | 8 |

     `Author`

    9 |
    10 | 11 |
    12 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/authors.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Authors | <* $$templateLib["getSiteName"][#] *> 5 | 6 | 7 | 8 |

    Authors

    9 |
    10 | 11 | 12 |
    13 | 14 |
    15 |
    16 | 25 |
    26 |
    27 | 28 |

    29 | 30 | 31 | 32 | <*#ContentData[#Article]["Title"]*> 33 |

    34 |
    35 |
    36 |
    37 |
    38 | 39 |
    40 |
    41 | 42 |
    43 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/category.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | | $$templateLib["getSiteName"][#] 5 | 6 | 7 | 8 |

     `Category`

    9 |
    10 | 11 |
    12 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/function.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | | <* $$templateLib["getSiteName"][#] *> 5 | 6 | 7 | 8 | 9 | 10 | 11 | Summary 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
    27 |
    28 |
    29 | `Content` 30 |
    31 | 32 |
    33 |
    34 |
    35 | 36 | 37 | <* If[TrueQ[#EmbedNotebook||#EmbedNotebook=="True"], $$templateLib["embedNotebook"]["Height"->500]] *> 38 | 39 | 40 | 41 | 42 |
    43 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/guide.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | | <* $$templateLib["getSiteName"][#] *> 5 | 6 | 7 | 8 | 9 | 10 | 11 | Summary 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
    27 |
    28 |
    29 | `Content` 30 |
    31 | 32 |
    33 |
    34 |
    35 | 36 | 37 | <* If[TrueQ[#EmbedNotebook||#EmbedNotebook=="True"], $$templateLib["embedNotebook"]["Height"->500]] *> 38 | 39 | 40 | 41 | 42 |
    43 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/aboutme.html: -------------------------------------------------------------------------------- 1 | 2 |
    3 | {% if AVATAR %} 4 |

    5 | 6 |

    7 | {% endif %} 8 | {% if ABOUT_ME %} 9 |

    10 | {{ _('About') }} {{ AUTHOR }}
    11 | {{ ABOUT_ME }} 12 |

    13 | {% endif %} 14 |
    15 |
    16 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/banner.html: -------------------------------------------------------------------------------- 1 | 37 | 38 | 51 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/config/icons.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "type"->"link", 4 | "rel"->"apple-touch-icon", 5 | "href"->"apple-touch-icon.png", 6 | "sizes"->"180x180" 7 | |>, 8 | <| 9 | "type"->"link", 10 | "rel"->"icon", 11 | "href"->"favicon-32x32.png", 12 | "sizes"->"32x32" 13 | |>, 14 | <| 15 | "type"->"link", 16 | "rel"->"icon", 17 | "href"->"favicon-16x16.png", 18 | "sizes"->"16x16" 19 | |>, 20 | <| 21 | "type"->"link", 22 | "rel"->"manifest", 23 | "href"->"manifest.json" 24 | |> 25 | } 26 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/config/links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"https://www.wolfram.com", 4 | "body"->"Wolfram" 5 | |> 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/config/page_links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"pages/about.html", 4 | "body"->"About" 5 | |> 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/config/social_links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"https://mathematica.stackexchange.com", 4 | "body"->"StackExchange" 5 | |> 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/config/stylesheets.m: -------------------------------------------------------------------------------- 1 | { 2 | "common.css", 3 | "style.css" 4 | } 5 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/footer.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 |
    6 | 7 | Generated with Ems 8 | 9 |
    10 |
    11 |

    12 | 13 | Back to top 14 |

    15 |
    16 |
    17 |
    18 |
    19 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/sidebar.html: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/sidebar/links.html: -------------------------------------------------------------------------------- 1 | <* 2 | $$["SideBarLinks"]= 3 | Replace[ 4 | #Links, 5 | { 6 | None->{}, 7 | Except[_List]:> 8 | Replace[ 9 | Quiet@Import[FileNameJoin@{"include", "config", "links.m"}], 10 | Except[_List]->{} 11 | ] 12 | } 13 | ]; 14 | *> 15 | 16 | 17 | 18 |
  • 19 |

    Links

    20 | <* 21 | $$templateLib["makeSiteLinkList"][ 22 | <| 23 | "ListClass"->"list-group", 24 | "ItemClass"->"list-group-item", 25 | "ListID"->"links" 26 | |>, 27 | $$["SideBarLinks"], 28 | # 29 | ] 30 | *> 31 |
  • 32 | 33 |
    34 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/sidebar/recent_posts.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
  • 4 |

    "Recent Posts"

    5 | <* 6 | $$templateLib["makeSiteLinkList"][ 7 | <| 8 | "ListClass"->"list-group", 9 | "ItemClass"->"list-group-item", 10 | "ListID"->"links" 11 | |>, 12 | <|"href"->#URL, "title"->#Title|>&/@ 13 | MinimalBy[#Articles, #Modified&, #RecentPostCount], 14 | # 15 | ] 16 | *> 17 |
  • 18 | 19 |
    20 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/sidebar/social.html: -------------------------------------------------------------------------------- 1 | <* 2 | $$["SideBarSocialLinks"]= 3 | Replace[ 4 | #SocialLinks, 5 | { 6 | None->{}, 7 | Except[_List]:> 8 | Replace[ 9 | Quiet@Import[FileNameJoin@{"include", "config", "social_links.m"}], 10 | Except[_List]->{} 11 | ] 12 | } 13 | ]; 14 | *> 15 | 16 | 17 | 18 |
  • 19 |

    Social

    20 | <* 21 | $$templateLib["makeSiteLinkList"][ 22 | <| 23 | "ListClass"->"list-group", 24 | "ItemClass"->"list-group-item", 25 | "ListID"->"social" 26 | |>, 27 | $$["SideBarSocialLinks"], 28 | # 29 | ] 30 | *> 31 |
  • 32 | 33 |
    34 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/indexes/functions.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
    5 |
    6 |

    Functions

    7 | 15 |
    16 |
    17 | 18 | 19 | 20 | 21 | 22 |
    23 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/indexes/guides.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
    5 |
    6 |

    Guides

    7 | 15 |
    16 |
    17 | 18 | 19 | 20 | 21 | 22 |
    23 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/indexes/tutorials.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
    5 |
    6 |

    Tutorials

    7 | 15 |
    16 |
    17 | 18 | 19 | 20 | 21 | 22 |
    23 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/page.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | `Title` | <* $$templateLib["getSiteName"][#] *> 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
    13 |

    `Title`

    14 |
    15 | `Content` 16 |
    17 |
    18 |
    19 | 20 |
    21 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/tag.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | | $$templateLib["getSiteName"][#] 5 | 6 | 7 | 8 |

     `Tag`

    9 |
    10 | 11 |
    12 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/tags.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tags | $$templateLib["getSiteName"][#] 5 | 6 | 7 | 8 |

    Tags

    9 |
    10 | 11 | 12 |
    13 | 14 |
    15 |
    16 | 25 |
    26 |
    27 | 28 |

    29 | 30 | 31 | 32 | <*#ContentData[#Article]["Title"]*> 33 |

    34 |
    35 |
    36 |
    37 |
    38 |
    39 |
    40 |
    41 |
    42 | 43 |
    44 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/tutorial.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | | <* $$templateLib["getSiteName"][#] *> 5 | 6 | 7 | 8 | 9 | 10 | 11 | Summary 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
    27 |
    28 |
    29 |
    30 | `Content` 31 | 32 | 33 |
    34 |
    35 |
    36 | 37 | 38 | <* If[TrueQ[#EmbedNotebook||#EmbedNotebook=="True"], 39 | $$templateLib["embedNotebook"]["Height"->500]] *> 40 | 41 | 42 | 43 | 44 | 45 |
    46 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Daan Debie 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/static/css/typogrify.css: -------------------------------------------------------------------------------- 1 | .caps {font-size:.92em;} 2 | .amp {color:#666; font-size:1.05em;font-family:"Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua",serif; font-style:italic;} 3 | .dquo {margin-left:-.38em;} 4 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/static/js/bodypadding.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | $('body').css('padding-top', $('.navbar').height()+'px'); 3 | }); -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/archives.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block title %}{{ _('Archives') }} - {{ SITENAME }}{% endblock %} 3 | {% block breadcrumbs %} 4 | {% if DISPLAY_BREADCRUMBS %} 5 | 9 | {% endif %} 10 | {% endblock %} 11 | 12 | {% block content %} 13 |
    14 |

    {{ _('Archives for') }} {{ SITENAME }}

    15 |
    16 | {% for article in dates %} 17 |

    18 | 19 | {{ article.title }}{% if article.subtitle %} - {{ article.subtitle }}{% endif %} 20 |

    21 | {% endfor %} 22 |
    23 |
    24 | {% endblock %} 25 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/article_list.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 |
    11 |

    <*#Article["Title"]*>

    12 |
    13 |
    14 | 15 | 16 | <*#Article*> 17 | 18 | 19 |
    20 |
    21 |
    22 | <*#Article["Summary"]*> 23 |
    24 |
    25 |
    26 | 27 |
    28 | 29 |
    30 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/author.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | `Author` | $$templateLib["getSiteName"][#] 5 | 6 | 7 | 8 |

     `Author`

    9 |
    10 | 11 |
    12 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/authors.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Authors | <* $$templateLib["getSiteName"][#] *> 5 | 6 | 7 | 8 |

    Authors

    9 |
    10 | 11 | 12 |
    13 | 14 |
    15 |
    16 | 25 |
    26 |
    27 | 28 |

    29 | 30 | 31 | 32 | <*#ContentData[#Article]["Title"]*> 33 |

    34 |
    35 |
    36 |
    37 |
    38 | 39 |
    40 |
    41 | 42 |
    43 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/category.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | | $$templateLib["getSiteName"][#] 5 | 6 | 7 | 8 |

     `Category`

    9 |
    10 | 11 |
    12 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/include/aboutme.html: -------------------------------------------------------------------------------- 1 | 2 |
    3 | {% if AVATAR %} 4 |

    5 | 6 |

    7 | {% endif %} 8 | {% if ABOUT_ME %} 9 |

    10 | {{ _('About') }} {{ AUTHOR }}
    11 | {{ ABOUT_ME }} 12 |

    13 | {% endif %} 14 |
    15 |
    16 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/include/banner.html: -------------------------------------------------------------------------------- 1 | 37 | 38 | 51 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/include/config/icons.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "type"->"link", 4 | "rel"->"apple-touch-icon", 5 | "href"->"apple-touch-icon.png", 6 | "sizes"->"180x180" 7 | |>, 8 | <| 9 | "type"->"link", 10 | "rel"->"icon", 11 | "href"->"favicon-32x32.png", 12 | "sizes"->"32x32" 13 | |>, 14 | <| 15 | "type"->"link", 16 | "rel"->"icon", 17 | "href"->"favicon-16x16.png", 18 | "sizes"->"16x16" 19 | |>, 20 | <| 21 | "type"->"link", 22 | "rel"->"manifest", 23 | "href"->"manifest.json" 24 | |> 25 | } 26 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/include/config/links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"https://www.wolfram.com", 4 | "body"->"Wolfram" 5 | |> 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/include/config/page_links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"pages/about.html", 4 | "body"->"About" 5 | |> 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/include/config/social_links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"https://mathematica.stackexchange.com", 4 | "body"->"StackExchange" 5 | |> 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/include/config/stylesheets.m: -------------------------------------------------------------------------------- 1 | { 2 | "common.css", 3 | "style.css" 4 | } 5 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/include/footer.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 |
    6 | 7 | Generated with Ems 8 | 9 |
    10 |
    11 |

    12 | 13 | Back to top 14 |

    15 |
    16 |
    17 |
    18 |
    19 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/include/sidebar.html: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/include/sidebar/links.html: -------------------------------------------------------------------------------- 1 | <* 2 | $$["SideBarLinks"]= 3 | Replace[ 4 | #Links, 5 | { 6 | None->{}, 7 | Except[_List]:> 8 | Replace[ 9 | Quiet@Import[FileNameJoin@{"include", "config", "links.m"}], 10 | Except[_List]->{} 11 | ] 12 | } 13 | ]; 14 | *> 15 | 16 | 17 | 18 |
  • 19 |

    Links

    20 | <* 21 | $$templateLib["makeSiteLinkList"][ 22 | <| 23 | "ListClass"->"list-group", 24 | "ItemClass"->"list-group-item", 25 | "ListID"->"links" 26 | |>, 27 | $$["SideBarLinks"], 28 | # 29 | ] 30 | *> 31 |
  • 32 | 33 |
    34 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/include/sidebar/recent_posts.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
  • 4 |

    "Recent Posts"

    5 | <* 6 | $$templateLib["makeSiteLinkList"][ 7 | <| 8 | "ListClass"->"list-group", 9 | "ItemClass"->"list-group-item", 10 | "ListID"->"links" 11 | |>, 12 | <|"href"->#URL, "title"->#Title|>&/@ 13 | MinimalBy[#Articles, #Modified&, #RecentPostCount], 14 | # 15 | ] 16 | *> 17 |
  • 18 | 19 |
    20 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/include/sidebar/social.html: -------------------------------------------------------------------------------- 1 | <* 2 | $$["SideBarSocialLinks"]= 3 | Replace[ 4 | #SocialLinks, 5 | { 6 | None->{}, 7 | Except[_List]:> 8 | Replace[ 9 | Quiet@Import[FileNameJoin@{"include", "config", "social_links.m"}], 10 | Except[_List]->{} 11 | ] 12 | } 13 | ]; 14 | *> 15 | 16 | 17 | 18 |
  • 19 |

    Social

    20 | <* 21 | $$templateLib["makeSiteLinkList"][ 22 | <| 23 | "ListClass"->"list-group", 24 | "ItemClass"->"list-group-item", 25 | "ListID"->"social" 26 | |>, 27 | $$["SideBarSocialLinks"], 28 | # 29 | ] 30 | *> 31 |
  • 32 | 33 |
    34 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | False 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/page.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | `Title` | <* $$templateLib["getSiteName"][#] *> 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
    13 |

    `Title`

    14 |
    15 | `Content` 16 |
    17 |
    18 |
    19 | 20 |
    21 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/tag.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | | $$templateLib["getSiteName"][#] 5 | 6 | 7 | 8 |

     `Tag`

    9 |
    10 | 11 |
    12 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/tags.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tags | $$templateLib["getSiteName"][#] 5 | 6 | 7 | 8 |

    Tags

    9 |
    10 | 11 | 12 |
    13 | 14 |
    15 |
    16 | 25 |
    26 |
    27 | 28 |

    29 | 30 | 31 | 32 | <*#ContentData[#Article]["Title"]*> 33 |

    34 |
    35 |
    36 |
    37 |
    38 |
    39 |
    40 |
    41 |
    42 | 43 |
    44 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/css/typogrify.css: -------------------------------------------------------------------------------- 1 | .caps {font-size:.92em;} 2 | .amp {color:#666; font-size:1.05em;font-family:"Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua",serif; font-style:italic;} 3 | .dquo {margin-left:-.38em;} 4 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/img/map-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/img/map-marker.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/js/grayscale.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Start Bootstrap - Grayscale Bootstrap Theme (http://startbootstrap.com) 3 | * Code licensed under the Apache License v2.0. 4 | * For details, see http://www.apache.org/licenses/LICENSE-2.0. 5 | */ 6 | 7 | // jQuery to collapse the navbar on scroll 8 | $(window).scroll(function() { 9 | if ($(".navbar").offset().top > 50) { 10 | $(".navbar-fixed-top").addClass("top-nav-collapse"); 11 | } else { 12 | $(".navbar-fixed-top").removeClass("top-nav-collapse"); 13 | } 14 | }); 15 | 16 | // jQuery for page scrolling feature - requires jQuery Easing plugin 17 | $(function() { 18 | $('a.page-scroll').bind('click', function(event) { 19 | var $anchor = $(this); 20 | $('html, body').stop().animate({ 21 | scrollTop: $($anchor.attr('href')).offset().top 22 | }, 1500, 'easeInOutExpo'); 23 | event.preventDefault(); 24 | }); 25 | }); 26 | 27 | // Closes the Responsive Menu on Menu Item Click 28 | $('.navbar-collapse ul li a').click(function() { 29 | $('.navbar-toggle:visible').click(); 30 | }); 31 | 32 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/templates/include/banner.html: -------------------------------------------------------------------------------- 1 | 37 | 38 | 51 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/templates/include/config/icons.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "type"->"link", 4 | "rel"->"apple-touch-icon", 5 | "href"->"apple-touch-icon.png", 6 | "sizes"->"180x180" 7 | |>, 8 | <| 9 | "type"->"link", 10 | "rel"->"icon", 11 | "href"->"favicon-32x32.png", 12 | "sizes"->"32x32" 13 | |>, 14 | <| 15 | "type"->"link", 16 | "rel"->"icon", 17 | "href"->"favicon-16x16.png", 18 | "sizes"->"16x16" 19 | |>, 20 | <| 21 | "type"->"link", 22 | "rel"->"manifest", 23 | "href"->"manifest.json" 24 | |> 25 | } 26 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/templates/include/config/links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"https://www.wolfram.com", 4 | "body"->"Wolfram" 5 | |> 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/templates/include/config/page_links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"pages/about.html", 4 | "body"->"About" 5 | |>, 6 | <| 7 | "href"->"authors.html", 8 | "body"->"Authors" 9 | |>, 10 | <| 11 | "href"->"categories.html", 12 | "body"->"Categories" 13 | |>, 14 | <| 15 | "href"->"tags.html", 16 | "body"->"Tags" 17 | |> 18 | } 19 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/templates/include/config/social_links.m: -------------------------------------------------------------------------------- 1 | { 2 | <| 3 | "href"->"https://mathematica.stackexchange.com", 4 | "body"->"StackExchange" 5 | |> 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/templates/include/config/stylesheets.m: -------------------------------------------------------------------------------- 1 | { 2 | "common.css", 3 | "style.css" 4 | } 5 | -------------------------------------------------------------------------------- /Dependencies/Ems/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/thumbnail.png -------------------------------------------------------------------------------- /Dependencies/Ems/thumbnail_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Dependencies/Ems/thumbnail_big.png -------------------------------------------------------------------------------- /Kernel/init.m: -------------------------------------------------------------------------------- 1 | Get@FileNameJoin@{Nest[DirectoryName, $InputFileName, 2], "SimpleDocs.wl"} -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Mark Boyer 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /PacletInfo.m: -------------------------------------------------------------------------------- 1 | Paclet[ 2 | Name -> "SimpleDocs", 3 | Version -> "1.1.3", 4 | Creator -> "b3m2a1 ", 5 | URL -> "https://github.com/b3m2a1/SimpleDocs", 6 | Thumbnail -> "Resources/icon.png", 7 | Extensions -> { 8 | { 9 | "Kernel", 10 | "Root" -> ".", 11 | "Context" -> {"SimpleDocs`"} 12 | }, 13 | {"FrontEnd"}, 14 | { 15 | "Documentation", 16 | "Language" -> "English", 17 | "MainPage" -> "Guides/SimpleDocs" 18 | }, 19 | { 20 | "Resource", 21 | "Root" -> "Resources", 22 | "Resources" -> { 23 | { 24 | "icon_big", 25 | "icon_big.png" 26 | }, 27 | { 28 | "icon", 29 | "icon.png" 30 | }, 31 | { 32 | "SimpleDocsHelperGenerator", 33 | "SimpleDocsHelperGenerator.nb" 34 | } 35 | } 36 | }, 37 | { 38 | "PacletServer", 39 | "Tags" -> {"documentation"}, 40 | "Categories" -> {"Development"}, 41 | "Description" -> 42 | "A simple package to make simple documentation", 43 | "License" -> "MIT" 44 | } 45 | } 46 | ] -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # SimpleDocs 4 | 5 | [![license](http://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT) 6 | 7 | SimpleDocs is a paclet designed to make simplified Mathematica documentation that will always be cross version compatible and can easily be converted to Markdown to be shared on the web. 8 | 9 | --- 10 | 11 | 12 | 13 | # Installation 14 | 15 | The easiest way to install Ems is using a paclet server installation: 16 | 17 | ```mathematica 18 | PacletInstall[ 19 | "SimpleDocs", 20 | "Site"-> 21 | "http://www.wolframcloud.com/objects/b3m2a1.paclets/PacletServer" 22 | ] 23 | ``` 24 | 25 | If you've already installed it you can update using: 26 | 27 | ```mathematica 28 | PacletUpdate[ 29 | "SimpleDocs", 30 | "Site"-> 31 | "http://www.wolframcloud.com/objects/b3m2a1.paclets/PacletServer" 32 | ] 33 | ``` 34 | 35 | Alternately you can download this repo as a ZIP file and put extract it in ```$UserBaseDirectory/Applications``` -------------------------------------------------------------------------------- /Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Resources/icon.png -------------------------------------------------------------------------------- /Resources/icon_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/Resources/icon_big.png -------------------------------------------------------------------------------- /SimpleDocs.wl: -------------------------------------------------------------------------------- 1 | (* ::Subsection::Closed:: *) 2 | (*Temp Loading Flag Code*) 3 | 4 | 5 | Temp`PackageScope`SimpleDocsLoading`Private`$PackageLoadData= 6 | If[#===None, <||>, Replace[Quiet@Get@#, Except[_?OptionQ]-><||>]]&@ 7 | Append[ 8 | FileNames[ 9 | "LoadInfo."~~"m"|"wl", 10 | FileNameJoin@{DirectoryName@$InputFileName, "Config"} 11 | ], 12 | None 13 | ][[1]]; 14 | Temp`PackageScope`SimpleDocsLoading`Private`$PackageLoadMode= 15 | Lookup[Temp`PackageScope`SimpleDocsLoading`Private`$PackageLoadData, "Mode", "Primary"]; 16 | Temp`PackageScope`SimpleDocsLoading`Private`$DependencyLoad= 17 | TrueQ[Temp`PackageScope`SimpleDocsLoading`Private`$PackageLoadMode==="Dependency"]; 18 | 19 | 20 | (* ::Subsection:: *) 21 | (*Main*) 22 | 23 | 24 | If[Temp`PackageScope`SimpleDocsLoading`Private`$DependencyLoad, 25 | If[!TrueQ[Evaluate[Symbol["`SimpleDocs`PackageScope`Private`$LoadCompleted"]]], 26 | Get@FileNameJoin@{DirectoryName@$InputFileName, "SimpleDocsLoader.wl"} 27 | ], 28 | If[!TrueQ[Evaluate[Symbol["SimpleDocs`PackageScope`Private`$LoadCompleted"]]], 29 | <"`" 25 | ]; 26 | EndPackage[] 27 | 28 | FrontEnd`Private`GetUpdatedSymbolContexts[] -------------------------------------------------------------------------------- /project/docs/BuildInfo.wl: -------------------------------------------------------------------------------- 1 | (* Created with the Wolfram Language : www.wolfram.com *) 2 | {"LastBuild" -> DateObject[{2019, 1, 19, 20, 20, 3 | 34.697156`8.292868858592936}, "Instant", "Gregorian", -8.]} 4 | -------------------------------------------------------------------------------- /project/docs/ContentCache.mx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/ContentCache.mx -------------------------------------------------------------------------------- /project/docs/DeploymentInfo.wl: -------------------------------------------------------------------------------- 1 | (* Created with the Wolfram Language : www.wolfram.com *) 2 | <|"CloudAccount" -> "DocumentationAccount", 3 | "LastDeployment" -> DateObject[{2018, 11, 24, 3, 29, 4 | 9.148024`7.713902282020505}, "Instant", "Gregorian", -8.], 5 | CloudConnect -> "DocumentationAccount"|> 6 | -------------------------------------------------------------------------------- /project/docs/content/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/banner.png -------------------------------------------------------------------------------- /project/docs/content/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/favicon-16x16.png -------------------------------------------------------------------------------- /project/docs/content/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/favicon-32x32.png -------------------------------------------------------------------------------- /project/docs/content/img/batchdocs-3557312341007022428.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/batchdocs-3557312341007022428.png -------------------------------------------------------------------------------- /project/docs/content/img/builddocssite-2393383465378652495.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/builddocssite-2393383465378652495.png -------------------------------------------------------------------------------- /project/docs/content/img/createtemplatenotebook-3280065304017635439.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/createtemplatenotebook-3280065304017635439.png -------------------------------------------------------------------------------- /project/docs/content/img/createtemplatenotebook-4210691290280307682.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/createtemplatenotebook-4210691290280307682.png -------------------------------------------------------------------------------- /project/docs/content/img/createtemplatenotebook-750804503041114924.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/createtemplatenotebook-750804503041114924.png -------------------------------------------------------------------------------- /project/docs/content/img/createtemplatenotebook-8839131942680359891.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/createtemplatenotebook-8839131942680359891.png -------------------------------------------------------------------------------- /project/docs/content/img/simpledocs-1599455536967208861.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/simpledocs-1599455536967208861.png -------------------------------------------------------------------------------- /project/docs/content/img/simpledocs-2507836165213850944.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/simpledocs-2507836165213850944.png -------------------------------------------------------------------------------- /project/docs/content/img/simpledocs-2968537504735316186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/simpledocs-2968537504735316186.png -------------------------------------------------------------------------------- /project/docs/content/img/simpledocs-3479245701921111827.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/simpledocs-3479245701921111827.png -------------------------------------------------------------------------------- /project/docs/content/img/simpledocs-3968114955546408557.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/simpledocs-3968114955546408557.png -------------------------------------------------------------------------------- /project/docs/content/img/simpledocs-5041275459013259347.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/simpledocs-5041275459013259347.png -------------------------------------------------------------------------------- /project/docs/content/img/simpledocs-5307295244000017838.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/simpledocs-5307295244000017838.png -------------------------------------------------------------------------------- /project/docs/content/img/simpledocs-6768042905886740767.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/simpledocs-6768042905886740767.png -------------------------------------------------------------------------------- /project/docs/content/img/simpledocs-6839446010392387124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/simpledocs-6839446010392387124.png -------------------------------------------------------------------------------- /project/docs/content/img/simpledocs-8406830451181930092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/simpledocs-8406830451181930092.png -------------------------------------------------------------------------------- /project/docs/content/img/simpledocs-97374131907832919.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/img/simpledocs-97374131907832919.png -------------------------------------------------------------------------------- /project/docs/content/pages/About.md: -------------------------------------------------------------------------------- 1 | Title: About 2 | Date: 2017-01-01 00:00:00 3 | Modified: 2017-01-01 00:00:00 4 | Slug: about 5 | 6 | This is a website made with Mathematica. It's designed to host documentation 7 | 8 | It was built via the [Ems](https://github.com/b3m2a1/Ems) package. -------------------------------------------------------------------------------- /project/docs/content/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/content/site-logo.png -------------------------------------------------------------------------------- /project/docs/output/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/banner.png -------------------------------------------------------------------------------- /project/docs/output/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/favicon-16x16.png -------------------------------------------------------------------------------- /project/docs/output/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/favicon-32x32.png -------------------------------------------------------------------------------- /project/docs/output/img/batchdocs-3557312341007022428.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/batchdocs-3557312341007022428.png -------------------------------------------------------------------------------- /project/docs/output/img/builddocssite-2393383465378652495.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/builddocssite-2393383465378652495.png -------------------------------------------------------------------------------- /project/docs/output/img/createtemplatenotebook-3280065304017635439.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/createtemplatenotebook-3280065304017635439.png -------------------------------------------------------------------------------- /project/docs/output/img/createtemplatenotebook-4210691290280307682.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/createtemplatenotebook-4210691290280307682.png -------------------------------------------------------------------------------- /project/docs/output/img/createtemplatenotebook-750804503041114924.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/createtemplatenotebook-750804503041114924.png -------------------------------------------------------------------------------- /project/docs/output/img/createtemplatenotebook-8839131942680359891.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/createtemplatenotebook-8839131942680359891.png -------------------------------------------------------------------------------- /project/docs/output/img/simpledocs-1599455536967208861.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/simpledocs-1599455536967208861.png -------------------------------------------------------------------------------- /project/docs/output/img/simpledocs-2507836165213850944.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/simpledocs-2507836165213850944.png -------------------------------------------------------------------------------- /project/docs/output/img/simpledocs-2968537504735316186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/simpledocs-2968537504735316186.png -------------------------------------------------------------------------------- /project/docs/output/img/simpledocs-3479245701921111827.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/simpledocs-3479245701921111827.png -------------------------------------------------------------------------------- /project/docs/output/img/simpledocs-3968114955546408557.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/simpledocs-3968114955546408557.png -------------------------------------------------------------------------------- /project/docs/output/img/simpledocs-5041275459013259347.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/simpledocs-5041275459013259347.png -------------------------------------------------------------------------------- /project/docs/output/img/simpledocs-5307295244000017838.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/simpledocs-5307295244000017838.png -------------------------------------------------------------------------------- /project/docs/output/img/simpledocs-6768042905886740767.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/simpledocs-6768042905886740767.png -------------------------------------------------------------------------------- /project/docs/output/img/simpledocs-6839446010392387124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/simpledocs-6839446010392387124.png -------------------------------------------------------------------------------- /project/docs/output/img/simpledocs-8406830451181930092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/simpledocs-8406830451181930092.png -------------------------------------------------------------------------------- /project/docs/output/img/simpledocs-97374131907832919.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/img/simpledocs-97374131907832919.png -------------------------------------------------------------------------------- /project/docs/output/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/site-logo.png -------------------------------------------------------------------------------- /project/docs/output/theme/css/common.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Mathematica'; 3 | src: url('../fonts/mathematica/Mathematica.eot'); 4 | src: url('../fonts/mathematica/Mathematica.eot?#iefix') format('embedded-opentype'), 5 | url('../fonts/mathematica/Mathematica.woff') format('woff'), 6 | url('../fonts/mathematica/Mathematica.ttf') format('truetype'); 7 | font-weight: normal; 8 | } 9 | 10 | @font-face { 11 | font-family: 'Mathematica'; 12 | src: url('../fonts/mathematica/Mathematica-Bold.eot'); 13 | src: url('../fonts/mathematica/Mathematica-Bold.eot?#iefix') format('embedded-opentype'), 14 | url('../fonts/mathematica/Mathematica-Bold.woff') format('woff'), 15 | url('../fonts/mathematica/Mathematica-Bold.ttf') format('truetype'); 16 | font-weight: bold; 17 | } 18 | 19 | @font-face { 20 | font-family: 'MathematicaMono'; 21 | src: url('../fonts/mathematica/MathematicaMono.eot'); 22 | src: url('../fonts/mathematica/MathematicaMono.eot?#iefix') format('embedded-opentype'), 23 | url('../fonts/mathematica/MathematicaMono.woff') format('woff'), 24 | url('../fonts/mathematica/MathematicaMono.ttf') format('truetype'); 25 | font-weight: normal; 26 | } 27 | 28 | @font-face { 29 | font-family: 'MathematicaMono'; 30 | src: url('../fonts/mathematica/MathematicaMono-Bold.eot'); 31 | src: url('../fonts/mathematica/MathematicaMono-Bold.eot?#iefix') format('embedded-opentype'), 32 | url('../fonts/mathematica/MathematicaMono-Bold.woff') format('woff'), 33 | url('../fonts/mathematica/MathematicaMono-Bold.ttf') format('truetype'); 34 | font-weight: bold; 35 | } 36 | -------------------------------------------------------------------------------- /project/docs/output/theme/css/typogrify.css: -------------------------------------------------------------------------------- 1 | .caps {font-size:.92em;} 2 | .amp {color:#666; font-size:1.05em;font-family:"Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua",serif; font-style:italic;} 3 | .dquo {margin-left:-.38em;} 4 | -------------------------------------------------------------------------------- /project/docs/output/theme/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/theme/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /project/docs/output/theme/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/theme/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /project/docs/output/theme/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/theme/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /project/docs/output/theme/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/theme/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /project/docs/output/theme/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/theme/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /project/docs/output/theme/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/theme/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /project/docs/output/theme/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/theme/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /project/docs/output/theme/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/theme/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /project/docs/output/theme/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/theme/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /project/docs/output/theme/fonts/mathematica/Mathematica-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/theme/fonts/mathematica/Mathematica-Bold.woff -------------------------------------------------------------------------------- /project/docs/output/theme/fonts/mathematica/Mathematica.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/theme/fonts/mathematica/Mathematica.woff -------------------------------------------------------------------------------- /project/docs/output/theme/fonts/mathematica/MathematicaMono-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/theme/fonts/mathematica/MathematicaMono-Bold.woff -------------------------------------------------------------------------------- /project/docs/output/theme/fonts/mathematica/MathematicaMono.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/SimpleDocs/37ac4e568f9edab211bc5a6f8b7c002955f5d775/project/docs/output/theme/fonts/mathematica/MathematicaMono.woff -------------------------------------------------------------------------------- /project/docs/output/theme/js/bodypadding.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | $('body').css('padding-top', $('.navbar').height()+'px'); 3 | }); -------------------------------------------------------------------------------- /project/docs/output/theme/prettify/.gitignore: -------------------------------------------------------------------------------- 1 | # temporary files 2 | *~ 3 | *.swp 4 | .DS_Store 5 | 6 | # package managers 7 | /node_modules/ 8 | /bower_components/ 9 | npm-debug.log 10 | .bower.json 11 | 12 | # generated files 13 | #/src/prettify.js 14 | #/src/run_prettify.js 15 | #/loader/*.js 16 | #/loader/*.css 17 | #/loader/skins/*.css 18 | #/distrib/*.zip 19 | -------------------------------------------------------------------------------- /project/docs/output/theme/prettify/styles/prettify-mma.min.css: -------------------------------------------------------------------------------- 1 | .pln{color:#326ab3}@media screen{.str{color:#833}.mma_msg{color:#833;font-style:italic}.mma_use{color:#833;font-weight:bold}.mma_iot{color:#555;font-weight:bold}.atn{color:#326ab3;font-weight:bold}.com{color:#555}.kwd{color:#000}.atv{color:#060;font-style:italic}.atn{color:#326ab3;font-weight:bold}.tag{color:#000;font-weight:bold}.lit{color:#833}.pln{color:#326ab3}.pun{color:#000}}@media print,projection{.str,.use,.msg{color:#833}.com{color:#555}.kwd{color:#000;font-weight:bold}.atv{color:#060;font-style:italic}.tag{color:#000;font-weight:bold}.lit{color:#833}.mma_use{color:#833;font-weight:bold}.mma_msg{color:#833;font-style:italic}.mma_iot{color:#555;font-weight:bold}.atn{color:#326ab3;font-weight:bold}.pun{color:#000}}pre.prettyprint{background:#EEE;padding:20px}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} -------------------------------------------------------------------------------- /project/docs/output/theme/search/search_options.json: -------------------------------------------------------------------------------- 1 | { 2 | "wholeWords":false 3 | } -------------------------------------------------------------------------------- /project/docs/output/theme/search/search_related.json: -------------------------------------------------------------------------------- 1 | { 2 | "Related":[] 3 | } -------------------------------------------------------------------------------- /project/docs/output/theme/search/search_replacements.json: -------------------------------------------------------------------------------- 1 | { 2 | "words":[] 3 | } -------------------------------------------------------------------------------- /project/docs/output/theme/search/search_stems.json: -------------------------------------------------------------------------------- 1 | { 2 | "words":[] 3 | } -------------------------------------------------------------------------------- /project/docs/output/theme/search/search_weights.json: -------------------------------------------------------------------------------- 1 | { 2 | "weight":[] 3 | } -------------------------------------------------------------------------------- /project/docs/output/theme/tipuesearch/tipuesearch_content.js: -------------------------------------------------------------------------------- 1 | 2 | var tipuesearch; 3 | $.getJSON(search_SiteURL+"/theme/search/search_index.json", 4 | function(data) { tipuesearch = data } 5 | ); 6 | 7 | var tipuesearch_options; 8 | $.getJSON(search_SiteURL+"/theme/search/search_options.json", 9 | function(data) { tipuesearch_options = data } 10 | ); 11 | --------------------------------------------------------------------------------