You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

LinkInfo.cs 999 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // MarkdownDeep - http://www.toptensoftware.com/markdowndeep
  3. // Copyright (C) 2010-2011 Topten Software
  4. //
  5. // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this product except in
  6. // compliance with the License. You may obtain a copy of the License at
  7. //
  8. // http://www.apache.org/licenses/LICENSE-2.0
  9. //
  10. // Unless required by applicable law or agreed to in writing, software distributed under the License is
  11. // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and limitations under the License.
  13. //
  14. using System;
  15. using System.Collections.Generic;
  16. using System.Linq;
  17. using System.Text;
  18. namespace MarkdownDeep
  19. {
  20. internal class LinkInfo
  21. {
  22. public LinkInfo(LinkDefinition def, string link_text)
  23. {
  24. this.def = def;
  25. this.link_text = link_text;
  26. }
  27. public LinkDefinition def;
  28. public string link_text;
  29. }
  30. }

No Description