== Why is this an issue? The proper use of white space makes a major contribution to code readability. This rule raises an issue when there is not a space character after the beginning and before the end of each comment (``++++``), directive (``++<%@ ... %>++``), and expression (``++<% ... %>++``). === Noncompliant code example [source,html] ---- <%@page import="java.io.*,java.util.*" %> <% String title = "My Page";%> ---- === Compliant solution [source,html] ---- <%@ page import="java.io.*,java.util.*" %> <% String title = "My Page"; %> ---- ifdef::env-github,rspecator-view[] ''' == Implementation Specification (visible only on this page) === Message Add a space at column X. endif::env-github,rspecator-view[]