diff --git a/README.md b/README.md
index 78cdcb0..77a37f2 100644
--- a/README.md
+++ b/README.md
@@ -193,6 +193,7 @@ app.get('*', (req, res) => {
const context = { url: req.url }
renderer.renderToString(context, (error, html) => {
if (error) return res.send(error.stack)
+ const bodyOpt = { inBody: true }
const {
title, htmlAttrs, bodyAttrs, link, style, script, noscript, meta
} = context.meta.inject()
@@ -211,6 +212,7 @@ app.get('*', (req, res) => {
${html}
+ ${script.text(bodyOpt)}