Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Basic test on automating #105

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Source/Expressive/Functions/Conversion/DateFunction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

namespace Expressive.Functions.Conversion
{
// begin-snippet: DateFunction
//Converts and returns the parameter as a DateTime.

//Date(value)

//or

//Date(value, format)
// end-snippet

internal sealed class DateFunction : FunctionBase
{
#region FunctionBase Members
Expand Down
21 changes: 21 additions & 0 deletions Source/test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!--
GENERATED FILE - DO NOT EDIT
This file was generated by [MarkdownSnippets](https://github.com/SimonCropp/MarkdownSnippets).
Source File: test.source.md
To change this file edit the source file and then run MarkdownSnippets.
-->

Some blurb about the below snippet
<!-- snippet: DateFunction -->
<a id='snippet-datefunction'></a>
```cs
//Converts and returns the parameter as a DateTime.

//Date(value)

//or

//Date(value, format)
```
<sup><a href='Expressive/Functions/Conversion/DateFunction.cs#L7-L15' title='Snippet source file'>snippet source</a> | <a href='#snippet-datefunction' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
2 changes: 2 additions & 0 deletions Source/test.source.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Some blurb about the below snippet
snippet: DateFunction