From 3c063a8616d97e4a6e99797f47cc397bf04a656e Mon Sep 17 00:00:00 2001 From: Swissky <12152583+swisskyrepo@users.noreply.github.com> Date: Mon, 2 Mar 2026 17:57:38 +0100 Subject: [PATCH] Fix formatting for SpEL and OGNL examples in Java.md --- Server Side Template Injection/Java.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Server Side Template Injection/Java.md b/Server Side Template Injection/Java.md index 90c54ff..45dc186 100644 --- a/Server Side Template Injection/Java.md +++ b/Server Side Template Injection/Java.md @@ -370,7 +370,7 @@ ${ new groovy.lang.GroovyClassLoader().parseClass("@groovy.transform.ASTTest(val ### SpEL - Basic Injection -> SpEL has built-in templating system using #{ }, but SpEL is also commonly used for interpolation using ${ } +> SpEL has built-in templating system using `#{ }`, but SpEL is also commonly used for interpolation using `${ }``. ```java ${7*7} @@ -472,7 +472,7 @@ ${pageContext.request.getSession().setAttribute("admin",true)} ### OGNL - Basic Injection -> OGNL can be used with different tags like ${ } +> OGNL can be used with different tags like `${ }` ```java 7*7