Plugin Directory

Changeset 3405488


Ignore:
Timestamp:
11/28/2025 08:55:45 PM (7 weeks ago)
Author:
joop
Message:

Updated blueprint

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inline-context/assets/blueprints/blueprint.json

    r3405486 r3405488  
    2525        {
    2626            "step": "runPHP",
    27             "code": "<?php\nrequire_once 'wordpress/wp-load.php';\n\n// Create a demo post with inline context examples\n$post_content = '\n<!-- wp:paragraph -->\n<p>The <a class=\"wp-inline-context\" data-inline-context=\"<p>A <strong>blockchain</strong> is a distributed ledger technology that maintains a secure and decentralized record of transactions.</p>\" data-anchor-id=\"context-note-1732800000000-abc\" href=\"#context-note-1732800000000-abc\" role=\"button\" aria-expanded=\"false\">blockchain</a> is revolutionizing digital transactions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Scientists have discovered that <a class=\"wp-inline-context\" data-inline-context=\"<p>Photosynthesis is the process by which plants convert light energy into chemical energy, producing oxygen as a byproduct.</p>\" data-anchor-id=\"context-note-1732800000001-def\" href=\"#context-note-1732800000001-def\" role=\"button\" aria-expanded=\"false\">photosynthesis</a> plays a crucial role in maintaining Earth\\'s atmosphere.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The concept of <a class=\"wp-inline-context\" data-inline-context=\"<p><strong>Machine learning</strong> is a subset of artificial intelligence that enables computers to learn from data without being explicitly programmed. It uses algorithms to identify patterns and make predictions.</p>\" data-anchor-id=\"context-note-1732800000002-ghi\" href=\"#context-note-1732800000002-ghi\" role=\"button\" aria-expanded=\"false\">machine learning</a> has transformed modern technology.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Getting Started</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Click any underlined term above to reveal its context note. Click again to hide it. You can also use the block editor to add your own inline context notes!</p>\n<!-- /wp:paragraph -->\n';\n\n$demo_post = array(\n    'post_title'    => 'Welcome to Inline Context Demo',\n    'post_content'  => $post_content,\n    'post_status'   => 'publish',\n    'post_author'   => 1,\n    'post_type'     => 'post',\n);\n\n$post_id = wp_insert_post( $demo_post );\n\nif ( $post_id ) {\n    echo 'Demo post created successfully with ID: ' . $post_id;\n} else {\n    echo 'Failed to create demo post';\n}\n?>"
     27            "code": "<?php\nrequire_once 'wordpress/wp-load.php';\n\n// Create a demo post with inline context examples\n$post_content = '<!-- wp:paragraph -->\n<p>The <a class=\"wp-inline-context\" data-inline-context=\"&lt;p&gt;A &lt;strong&gt;blockchain&lt;/strong&gt; is a distributed ledger technology that maintains a secure and decentralized record of transactions.&lt;/p&gt;\" data-anchor-id=\"context-note-1732800000000-abc\" href=\"#context-note-1732800000000-abc\" role=\"button\" aria-expanded=\"false\">blockchain</a> is revolutionizing digital transactions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Scientists have discovered that <a class=\"wp-inline-context\" data-inline-context=\"&lt;p&gt;Photosynthesis is the process by which plants convert light energy into chemical energy, producing oxygen as a byproduct.&lt;/p&gt;\" data-anchor-id=\"context-note-1732800000001-def\" href=\"#context-note-1732800000001-def\" role=\"button\" aria-expanded=\"false\">photosynthesis</a> plays a crucial role in maintaining Earth&#8217;s atmosphere.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The concept of <a class=\"wp-inline-context\" data-inline-context=\"&lt;p&gt;&lt;strong&gt;Machine learning&lt;/strong&gt; is a subset of artificial intelligence that enables computers to learn from data without being explicitly programmed. It uses algorithms to identify patterns and make predictions.&lt;/p&gt;\" data-anchor-id=\"context-note-1732800000002-ghi\" href=\"#context-note-1732800000002-ghi\" role=\"button\" aria-expanded=\"false\">machine learning</a> has transformed modern technology.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Getting Started</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Click any underlined term above to reveal its context note. Click again to hide it. You can also use the block editor to add your own inline context notes!</p>\n<!-- /wp:paragraph -->\n';\n\n$demo_post = array(\n    'post_title'    => 'Welcome to Inline Context Demo',\n    'post_content'  => $post_content,\n    'post_status'   => 'publish',\n    'post_author'   => 1,\n    'post_type'     => 'post',\n);\n\n$post_id = wp_insert_post( $demo_post );\n\nif ( $post_id ) {\n    echo 'Demo post created successfully with ID: ' . $post_id;\n} else {\n    echo 'Failed to create demo post';\n}\n?>"
    2828        },
    2929        {
Note: See TracChangeset for help on using the changeset viewer.