```lua
-- If the string contains only whitespace, treat it as empty and skip.
-- `%S` matches any non-whitespace character.
-- `find` returns
-- - the start and end indices if a match is found;
-- - otherwise, it returns nil. Thus, `not ...` evaluates to true.
if not content:find("%S") then
end
```