Guest User

Untitled

a guest
Apr 5th, 2023
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. The following text block between backticks is the optically-recognized text from a poem. I need your help to turn this poem into well-formatted HTML for an ebook.
  2.  
  3. Please begin by reformatting the poem into 5 stanzas. There are 4 verses in each stanza. Do not modify the poem text.
  4.  
  5. ```
  6. O Master, I can not adventure with thee;
  7.  
  8. At the Door of the Dawn, in my lone wandering,
  9.  
  10. I have broken my staff; for the true dawn is she
  11. Who comes every day with her jar to the spring.
  12.  
  13. Ay, Master, I tarried last night at the gate
  14. Of her garden, which kisses the Lake Galilee;
  15.  
  16. She was gathering flowers and fruits for the Fete,
  17. And with tulips and poppies she beckoned to me.
  18.  
  19. In her lamp there was oil, in my hand there was fire;
  20. In her house cried a voice, ‘O make haste with the flame!’
  21.  
  22. On my lips were the names of the daughters of Tyre,
  23. On her breast were the lilies that whispered thy name.
  24.  
  25. I have dared, O my Master, to envy thy feet,
  26.  
  27. And to yearn for the love of a Magdalen fair;
  28.  
  29. I have dreamed that mine, too, in the heart of the street.
  30.  
  31. Were laved with her own hands and dried with her hair.
  32.  
  33.  
  34.  
  35.  
  36. O Master, my lips her devotion have stained,
  37.  
  38. For her soul’s precious ointments were offered too late;
  39.  
  40. I have lost in the fire of my lust what I gained
  41. In my longing and love for her love and thy fate.
  42. ```
  43.  
  44. Once you have reformatted the poem without modifying the poem text, we need to take your poem and format it in HTML. Make sure your output is in a code block.
  45.  
  46. Wrap each stanza in <p> tag and each verse in a <span> tag. Separate each verse with a <br/>. Example:
  47.  
  48. ```
  49. <p>
  50. <span>Verse 1</span>
  51. <br/>
  52. <span>Verse 2</span>
  53. <br/>
  54. <span>Verse 3</span>
  55. </p>
  56. <p>
  57. <span>Verse 4</span>
  58. <br/>
  59. <span>Verse 5</span>
  60. <br/>
  61. <span>Verse 6</span>
  62. </p>
  63. ```
Advertisement
Add Comment
Please, Sign In to add comment