-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: stop converting to markdown, clean html - remove remark, don't convert html to markdown - cleanup html - add class "pretty-print" to <pre><code> - add <a> for [text](link) markdown - add <code> for `text` code formatting * fix: cleanup html, replace [text][uid] with xref tags
- Loading branch information
Showing
39 changed files
with
209 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-60.5 KB
third_party/docfx-doclet-143274/src/lib/com/overzealous/remark/1.1.0/remark-1.1.0.jar
Binary file not shown.
1 change: 0 additions & 1 deletion
1
third_party/docfx-doclet-143274/src/lib/com/overzealous/remark/1.1.0/remark-1.1.0.jar.md5
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
third_party/docfx-doclet-143274/src/lib/com/overzealous/remark/1.1.0/remark-1.1.0.jar.sha1
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
third_party/docfx-doclet-143274/src/lib/com/overzealous/remark/1.1.0/remark-1.1.0.pom
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
third_party/docfx-doclet-143274/src/lib/com/overzealous/remark/1.1.0/remark-1.1.0.pom.md5
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
third_party/docfx-doclet-143274/src/lib/com/overzealous/remark/1.1.0/remark-1.1.0.pom.sha1
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
third_party/docfx-doclet-143274/src/lib/com/overzealous/remark/maven-metadata.xml
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
third_party/docfx-doclet-143274/src/lib/com/overzealous/remark/maven-metadata.xml.md5
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
third_party/docfx-doclet-143274/src/lib/com/overzealous/remark/maven-metadata.xml.sha1
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 48 additions & 1 deletion
49
third_party/docfx-doclet-143274/src/test/java/com/microsoft/samples/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,51 @@ | ||
/* | ||
* Copyright 2021 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
/** | ||
* This package contains the sample set of classes for testing DocFx doclet. | ||
* The interfaces provided are listed below, along with usage samples. | ||
* | ||
* <p>======================= SpeechClient ======================= | ||
* | ||
* <p>Service Description: Service that implements Google Cloud Speech API. | ||
* | ||
* <p>Sample for SpeechClient: | ||
* | ||
* <pre>{@code | ||
* try (SpeechClient speechClient = SpeechClient.create()) { | ||
* RecognitionConfig config = RecognitionConfig.newBuilder().build(); | ||
* RecognitionAudio audio = RecognitionAudio.newBuilder().build(); | ||
* RecognizeResponse response = speechClient.recognize(config, audio); | ||
* } | ||
* }</pre> | ||
* | ||
* <p>======================= AdaptationClient ======================= | ||
* | ||
* <p>Service Description: Service that implements Google Cloud Speech Adaptation API. | ||
* | ||
* <p>Sample for AdaptationClient: | ||
* | ||
* <pre>{@code | ||
* try (AdaptationClient adaptationClient = AdaptationClient.create()) { | ||
* LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]"); | ||
* PhraseSet phraseSet = PhraseSet.newBuilder().build(); | ||
* String phraseSetId = "phraseSetId959902180"; | ||
* PhraseSet response = adaptationClient.createPhraseSet(parent, phraseSet, phraseSetId); | ||
* } | ||
* }</pre> | ||
*/ | ||
@Generated("by gapic-generator-java") | ||
package com.microsoft.samples; | ||
|
||
import javax.annotation.Generated; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.