Changeset 3405488
- Timestamp:
- 11/28/2025 08:55:45 PM (7 weeks ago)
- File:
-
- 1 edited
-
inline-context/assets/blueprints/blueprint.json (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
inline-context/assets/blueprints/blueprint.json
r3405486 r3405488 25 25 { 26 26 "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=\"<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?>" 28 28 }, 29 29 {
Note: See TracChangeset
for help on using the changeset viewer.