Skip to content

Instantly share code, notes, and snippets.

View HristoKolev's full-sized avatar
🎯
Focusing

Hristo Kolev HristoKolev

🎯
Focusing
  • Sofia, Bulgaria
  • 19:21 (UTC +03:00)
View GitHub Profile
namespace HtmlScrubber
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
using Fizzler.Systems.HtmlAgilityPack;
http://rion.io/2014/09/30/integrating-tinymce-into-an-mvc-5-project/
https://stackoverflow.com/questions/17868817/model-for-layout-cshtml-on-mvc4
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/bootswatch/cosmo/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
namespace ConsoleApplication8
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics;
internal class Program
{
private static void Main(string[] args)
namespace ConsoleApp5
{
using System;
using System.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
@HristoKolev
HristoKolev / directives-exercise-start.markdown
Created November 18, 2017 11:09
Directives Exercise Start
import { addReducers } from '../store';
addReducers({
account: accountReducer
});
export interface IReduxState {
settings: ISettingsState;
session: ISessionState;
}
declare module '../store' {
interface IReduxState {
account: IAccountState;
}
}
import { addReducers } from '../store';
addReducers({
account: accountReducer
});
declare module '../store' {
interface IReduxState {
account: IAccountState;
}