💡Pro-tip! Make it easier to read your code relate...
# social
u
💡Pro-tip! Make it easier to read your code related questions and format your code. You can use the backticks notation for it: https://techswift.org/2021/07/02/how-to-format-text-as-a-block-snippet-of-code-in-discord/ We love it when your code looks pretty like this:
Copy code
csharp
public class SubscribeToContentServiceSavingComposer : IComposer
{
	public void Compose(IUmbracoBuilder builder)
	{
		builder.AddNotificationHandler<ContentSavingNotification, CustomContentSavingNotificationHandler>();
	}
}