using ScenarioFlow;
using ScenarioFlow.Scripts.SFText;

namespace HowToChooseTokenCode
{
	public class PrimitiveDecoders : IReflectable
    {
        [DecoderMethod]
        [Category("Primitive")]
        [Description("Decoder for 'string'.")]
        [Description("'<bk>' will be replaced with a 'new line'.")]
        public string ConvertToString(string input)
        {
            return input.Replace(SFText.LineBreakSymbol, " ");
        }
    }
}