Action

Action for Jim

Posted by sylumer, Last update 3 months ago - Unlisted

Steps

  • defineTemplateTag

    name
    css
    template
          @charset "utf-8";
    
        :root {
          --main-bg-color: #fefefe;
          --main-color: black;
          --alternate-bg-color: #efefef;
          --alternate-color: #222222;
          --main-border-color: #BBBBBB;
          --link-color: #627EC9;
        }
    
        @media (prefers-color-scheme: dark) {
          :root {
            --main-bg-color: #222222;
            --main-color: #eeeeee;
            --alternate-bg-color: #444444;
            --alternate-color: #cccccc;
            --main-border-color: #AAAAAA;
            --link-color: #627EC9;
          }
        }
    
        html,
        body {
            padding: 1em;
            margin: auto;
            max-width: 55em;
            background: var(--main-bg-color);
        }
    
        body {
            font: 1.3em Baskerville, Palatino, Times;
            color: var(--main-color);
            line-height: 1.4;
        }
    
        header,
        nav,
        article,
        footer {
            width: 700px;
            margin: 0 auto;
        }
    
        article {
            margin-top: 2em;
            margin-bottom: 4em;
            min-height: 400px;
        }
    
        /* Typography
        -------------------------------------------------------- */
    
        h1 {
            margin-top: 0;
            font-weight: normal;
    	color: cyan;
        }
    
        h2 {
            font-weight: normal;
        }
    
        h3 {
            font-weight: normal;
            font-style: italic;
            margin-top: 3em;
        }
    
        p {
            margin-top: 0;
            -webkit-hypens: auto;
            -moz-hypens: auto;
            hyphens: auto;
        }
    
        ul {
            list-style: square;
            padding-left: 1.2em;
        }
    
        ol {
            padding-left: 1.2em;
        }
    
        blockquote {
            margin-left: 1em;
            padding-left: 1em;
            border-left: 1px solid #ddd;
        }
    
        pre {
            display: block;
            margin: 1em 0;
            padding: .5em 1em;
            width: 100%;
            color: var(--alternate-color);
            background: var(--alternate-bg-color);
        }
    
        code {
            font-family: "Consolas", "Menlo", "Monaco", monospace, serif;
            font-size: .9em;
            color: var(--alternate-color);
            background: var(--alternate-bg-color);
        }
    
        a {
            color: var(--link-color);
            text-decoration: none;
        }
    
        a:hover {
            text-decoration: underline;
        }
    
        a img {
            border: none;
        }
    
        h1 a,
        h1 a:hover {
            text-decoration: none;
        }
    
        hr {
            color: var(--alternate-bg-color);
            height: 1px;
            margin: 2em 0;
            border-top: solid 1px var(--alternate-bg-color);
            border-bottom: none;
            border-left: 0;
            border-right: 0;
        }
    
        img {
            max-width: 90%;
        }
    
        table {
            margin: 1em 0;
            border: 1px solid var(--main-border-color);
            border-collapse: collapse;
        }
    
        th {
            padding: .25em .5em;
            background: var(--alternate-bg-color);
            border: 1px solid --main-border-color;
        }
    
        td {
            padding: .25em .5em;
            border: 1px solid var(--main-border-color);
        }
    
        /* Home Page
        --------------------------- */
    
        body#index li {
            margin-bottom: 1em;
        }
    
    
        /* iPad
        -------------------------------------------------------- */
        @media only screen and (max-device-width: 1024px) {
            body {
                font-size: 120%;
                line-height: 1.4;
            }
        }
    
        /* @iPad */
    
        /* iPhone
        -------------------------------------------------------- */
        @media only screen and (max-device-width: 480px) {
            body {
                text-align: left;
                padding: .5em;
            }
    
            article,
            footer {
                width: auto;
            }
    
            article {
                padding: 0 1em;
            }
        }
    
  • defineTemplateTag

    name
    mdcontent
    template
    
    
    # This is an example Markdown List
    This list could be from a draft or dynamically created.
    
    - First
    - Second
    - Third
    
    
    The styling applied was pulled in fro an entirely different custom template tag, and the date and time below from a standard template tag with custom formatting applied for good measure.
    
    ---
    
    **Generated:** [[date|%A %e %B %Y at %r]]
  • script

    // Build an example prompt with a yes/no choice
    let promptChoose = Prompt.create();
    promptChoose.addButton("Yes");
    promptChoose.addButton("No");
    promptChoose.title = "Choose";
    promptChoose.message = "Do you want to display a preview?";
    
    if (promptChoose.show())
    {
    	// We could just check the button press, but just in case Jim's code is factoring in multiple elements
    	// we will use a separate Boolean (like previewListAfterSuccess)
    	let bPreviewList = false;
    	if (promptChoose.buttonPressed == "Yes") bPreviewList = true;
    
    	// Show the list if we have to
    	if (bPreviewList)
    	{
    		// Prep Markdown to HTML conversion using the MMD engine
    		let mmdContent = MultiMarkdown.create();
    		mmdContent.format = "html";
    
    		// Show the preview of the rendered content based on the content specified by tags in the action
    		let hpMain = HTMLPreview.create();
    		hpMain.show(mmdContent.render(draft.processTemplate("[[mdcontent]]")));
    	}
    	else alert("You selected NOT to show the preview");
    }

Options

  • After Success Default
    Notification Error
    Log Level Error
Items available in the Drafts Directory are uploaded by community members. Use appropriate caution reviewing downloaded items before use.