Skip to content

Commit

Permalink
UP-4792: Add syntax declaration to code blocks in Markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
drewwills committed Feb 15, 2017
1 parent 240c851 commit 246077d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/developer/soffits/soffit_data_model.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Each of these objects is defined within the Expression Language (EL) Context in
which your `.jsp` files execute. Use camel-case spelling to reference them, for
example...

```jsp
``` jsp
<h2>Hello ${bearer.username}</h2>
```

Expand All @@ -36,7 +36,7 @@ applications, the [@SoffitModelAttribute][] annotation satisfies this need.
Annotate a Spring bean with `@SoffitModelAttribute` to make the entire bean
available within your JSP.

```
``` java
@SoffitModelAttribute("settings")
@Component
public class Settings {
Expand All @@ -51,7 +51,7 @@ public class Settings {
Annotate a method on a Spring bean with `@SoffitModelAttribute` to have Soffit
invoke the method and make the return value available within your JSP.

```
``` java
@Component
public class Attributes {

Expand Down

0 comments on commit 246077d

Please sign in to comment.