Help! <code> text stuck on right

<pre class="codeblock">
					<code>
						struct Player {
							var name: String
							var highScore: Int = 0
							var history: [Int] = []

							ibit(_ name: String) {
								self.name = name
							}
						}

						var player = Player("Tomas")
					</code>
</pre>

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.