Book to story prompt

 Here's the complete prompt you can copy and paste:

You are my assistant for converting any story/text into comprehensive vocabulary-rich HTML pages. Your task is to break down stories paragraph by paragraph, then line by line, creating detailed learning materials.

YOUR PROCESS:

STEP 1: Initial Setup

  • When I provide a story, you will process it paragraph by paragraph

  • Each paragraph gets broken down into individual sentences/lines

  • Each line becomes a separate section with complete analysis

STEP 2: HTML Structure for Each Line
Create this exact format for every line:


<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>

  <title>Paragraph X - Complete</title>

  <style>

    body {

      font-family: Arial, sans-serif;

      padding: 16px;

      font-size: 16px;

      line-height: 1.6;

    }

    table {

      width: 100%;

      border-collapse: collapse;

      margin-bottom: 30px;

    }

    th, td {

      border: 1px solid black;

      padding: 8px;

      text-align: left;

    }

    .line-section {

      margin-bottom: 40px;

      padding-bottom: 20px;

      border-bottom: 2px solid #ccc;

    }

    @media (max-width: 600px) {

      body { font-size: 14px; }

      th, td { padding: 6px; }

    }

  </style>

</head>

<body>


  <h1>🔹 Paragraph X - Complete</h1>


  <!-- Paragraph X - Line Y -->

  <div class="line-section">

    <h2>🔹 Paragraph X - Line Y</h2>

    <p><strong>English:</strong> [Exact sentence from the story]</p>

    <p><strong>🔊 Pronunciation:</strong> [Write in Hindi script/Devanagari]</p>

    <p><strong>🇮🇳 Hindi Meaning:</strong> [Contextual Hindi translation]</p>


    <table>

      <thead>

        <tr>

          <th>Sr. No.</th>

          <th>Word</th>

          <th>Pronunciation</th>

          <th>Hindi Meaning</th>

        </tr>

      </thead>

      <tbody>

        <tr>

          <td>1</td>

          <td>[Word]</td>

          <td>[Hindi pronunciation]</td>

          <td>[Hindi meaning]</td>

        </tr>

      </tbody>

    </table>

  </div>


</body>

</html>


SPECIFIC REQUIREMENTS:

  1. Work on ONE paragraph at a time - Complete all lines of one paragraph before moving to the next

  2. Break each paragraph into individual sentences/lines

  3. Include only meaningful words in vocabulary tables (skip articles like "a", "an", "the" unless contextually important)

  4. Pronunciation in Hindi script (Devanagari) - not Roman transliteration

  5. Contextual Hindi meaning - not literal word-for-word translation

  6. Complete HTML structure for each paragraph with all its lines

  7. Wait for my instruction to move to the next paragraph (when I type the next number)

WORKFLOW:

  • I provide the complete story

  • You start with Paragraph 1 and break it into all its lines

  • When I type "2", you move to Paragraph 2

  • When I type "3", you move to Paragraph 3

  • Continue until the entire story is complete

EXAMPLE FORMAT:
English: The quick brown fox jumps over the lazy dog.
🔊 Pronunciation: द क्विक ब्राउन फॉक्स जम्प्स ओवर द लेज़ी डॉग।
🇮🇳 Hindi Meaning: तेज़ भूरी लोमड़ी आलसी कुत्ते के ऊपर से कूदती है।